From 524691c0a0849c9f271992b61d828afaa849a01a Mon Sep 17 00:00:00 2001 From: Paul Bakker Date: Thu, 25 Jul 2013 17:01:20 +0200 Subject: [PATCH] Added --modes option to tests/compat.sh --- tests/compat.sh | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/tests/compat.sh b/tests/compat.sh index 86a396bc4..eaa12deaf 100755 --- a/tests/compat.sh +++ b/tests/compat.sh @@ -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 ;;