Added --modes option to tests/compat.sh

This commit is contained in:
Paul Bakker 2013-07-25 17:01:20 +02:00
parent f16db18c55
commit 524691c0a0

View file

@ -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
;; ;;