mirror of
https://github.com/yuzu-emu/mbedtls
synced 2024-11-24 13:48:10 +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
|
||||
FILTER=$1
|
||||
;;
|
||||
-m|--modes)
|
||||
# Perform modes
|
||||
shift
|
||||
MODES=$1
|
||||
;;
|
||||
-v|--verbose)
|
||||
# Set verbosity
|
||||
shift
|
||||
|
@ -26,8 +31,9 @@ do
|
|||
-h|--help)
|
||||
# print help
|
||||
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 " -m|--modes\tWhich modes to perform (Default: \"ssl3 tls1 tls1_1 tls1_2\")"
|
||||
echo -e " -v|--verbose\t\tSet verbose output."
|
||||
exit 1
|
||||
;;
|
||||
|
|
Loading…
Reference in a new issue