From 826f8da954c06fc568601ba8a755b7e8c8f9aacf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20P=C3=A9gouri=C3=A9-Gonnard?= Date: Tue, 9 Apr 2024 11:17:26 +0200 Subject: [PATCH] compat.sh: fix --list-test-cases for RC4 with DTLS MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Manuel Pégourié-Gonnard --- tests/compat.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tests/compat.sh b/tests/compat.sh index 014036951..f21619a16 100755 --- a/tests/compat.sh +++ b/tests/compat.sh @@ -133,6 +133,11 @@ print_test_case() { # list_test_case lists all potential test cases in compat.sh without execution list_test_cases() { + # We want to call filter_ciphersuites to apply standard-defined exclusions + # (like "no RC4 with DTLS") but without user-defined exludes/filters. + EXCLUDE='^$' + FILTER="" + for MODE in $MODES; do for TYPE in $TYPES; do # PSK cipher suites do not allow client certificate verification. @@ -147,6 +152,7 @@ list_test_cases() { add_openssl_ciphersuites add_gnutls_ciphersuites add_mbedtls_ciphersuites + filter_ciphersuites print_test_case m O "$O_CIPHERS" print_test_case O m "$O_CIPHERS" print_test_case m G "$G_CIPHERS"