From ee63af6f8f1af2ab4ea7d6f9e1b18cf4dc87aae5 Mon Sep 17 00:00:00 2001 From: Hanno Becker Date: Fri, 14 Aug 2020 15:41:23 +0100 Subject: [PATCH] Adapt ssl-opt.sh to modified ciphersuite log format The debug output for supported ciphersuites has been changed from `deadbeef` to `0xdeadbeef` in a previous commit, but the test script `ssl-opt.sh` grepping for lines in the debug log to determine test success/failure hadn't been adjusted accordingly. This commit fixes this. Signed-off-by: Hanno Becker --- tests/ssl-opt.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/ssl-opt.sh b/tests/ssl-opt.sh index 5864a87a7..e7849cdd3 100755 --- a/tests/ssl-opt.sh +++ b/tests/ssl-opt.sh @@ -5745,7 +5745,7 @@ run_test "ECJPAKE: client not configured" \ "$P_SRV debug_level=3" \ "$P_CLI debug_level=3" \ 0 \ - -C "add ciphersuite: c0ff" \ + -C "add ciphersuite: 0xc0ff" \ -C "adding ecjpake_kkpp extension" \ -S "found ecjpake kkpp extension" \ -S "skip ecjpake kkpp extension" \ @@ -5760,7 +5760,7 @@ run_test "ECJPAKE: server not configured" \ "$P_CLI debug_level=3 ecjpake_pw=bla \ force_ciphersuite=TLS-ECJPAKE-WITH-AES-128-CCM-8" \ 1 \ - -c "add ciphersuite: c0ff" \ + -c "add ciphersuite: 0xc0ff" \ -c "adding ecjpake_kkpp extension" \ -s "found ecjpake kkpp extension" \ -s "skip ecjpake kkpp extension" \ @@ -5775,7 +5775,7 @@ run_test "ECJPAKE: working, TLS" \ "$P_CLI debug_level=3 ecjpake_pw=bla \ force_ciphersuite=TLS-ECJPAKE-WITH-AES-128-CCM-8" \ 0 \ - -c "add ciphersuite: c0ff" \ + -c "add ciphersuite: 0xc0ff" \ -c "adding ecjpake_kkpp extension" \ -C "re-using cached ecjpake parameters" \ -s "found ecjpake kkpp extension" \