mirror of
https://github.com/yuzu-emu/mbedtls
synced 2024-11-24 16:58:26 +00:00
Added --modes option to tests/compat.sh
This commit is contained in:
parent
f16db18c55
commit
524691c0a0
1 changed files with 7 additions and 1 deletions
|
@ -18,6 +18,11 @@ do
|
||||||
shift
|
shift
|
||||||
FILTER=$1
|
FILTER=$1
|
||||||
;;
|
;;
|
||||||
|
-m|--modes)
|
||||||
|
# Perform modes
|
||||||
|
shift
|
||||||
|
MODES=$1
|
||||||
|
;;
|
||||||
-v|--verbose)
|
-v|--verbose)
|
||||||
# Set verbosity
|
# Set verbosity
|
||||||
shift
|
shift
|
||||||
|
@ -26,8 +31,9 @@ do
|
||||||
-h|--help)
|
-h|--help)
|
||||||
# print help
|
# print help
|
||||||
echo "Usage: $0"
|
echo "Usage: $0"
|
||||||
echo -e " -f|--filter\tFilter ciphersuites to test."
|
echo -e " -f|--filter\tFilter ciphersuites to test (Default: all)"
|
||||||
echo -e " -h|--help\t\tPrint this help."
|
echo -e " -h|--help\t\tPrint this help."
|
||||||
|
echo -e " -m|--modes\tWhich modes to perform (Default: \"ssl3 tls1 tls1_1 tls1_2\")"
|
||||||
echo -e " -v|--verbose\t\tSet verbose output."
|
echo -e " -v|--verbose\t\tSet verbose output."
|
||||||
exit 1
|
exit 1
|
||||||
;;
|
;;
|
||||||
|
|
Loading…
Reference in a new issue