From 9e2c80fa241cae35425b62fbdd7473330a9118db Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20P=C3=A9gouri=C3=A9-Gonnard?= Date: Tue, 24 Mar 2020 10:53:39 +0100 Subject: [PATCH] Improve some test names in ssl-opt.sh MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - "Default" should only be used for tests that actually use the defaults (ie, not passing options on the command line, except maybe debug/dtls) - All tests in the "Encrypt then MAC" group should start with that string as a common prefix Signed-off-by: Manuel Pégourié-Gonnard --- tests/ssl-opt.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/ssl-opt.sh b/tests/ssl-opt.sh index 32f218d03..35f742f67 100755 --- a/tests/ssl-opt.sh +++ b/tests/ssl-opt.sh @@ -2424,7 +2424,7 @@ run_test "Encrypt then MAC: empty application data record" \ -s "dumping 'input payload after decrypt' (0 bytes)" \ -c "0 bytes written in 1 fragments" -run_test "Default, no Encrypt then MAC: empty application data record" \ +run_test "Encrypt then MAC: disabled, empty application data record" \ "$P_SRV auth_mode=none debug_level=4 etm=0" \ "$P_CLI auth_mode=none etm=0 request_size=0" \ 0 \ @@ -2439,7 +2439,7 @@ run_test "Encrypt then MAC, DTLS: empty application data record" \ -s "dumping 'input payload after decrypt' (0 bytes)" \ -c "0 bytes written in 1 fragments" -run_test "Default, no Encrypt then MAC, DTLS: empty application data record" \ +run_test "Encrypt then MAC, DTLS: disabled, empty application data record" \ "$P_SRV auth_mode=none debug_level=4 etm=0 dtls=1" \ "$P_CLI auth_mode=none etm=0 request_size=0 dtls=1" \ 0 \