From a2eaeef78a21807c82133e6a44334b2299c4543f Mon Sep 17 00:00:00 2001 From: Waqar Ahmed Khan Date: Tue, 2 Apr 2024 14:30:42 -0700 Subject: [PATCH] Skip rsa8192.badssl.com Test to Fix CI (#635) --- tests/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 5fbdb96aa..e2c3902dc 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -183,13 +183,13 @@ if(NOT BYO_CRYPTO) # Badssl - Secure uncommon suite # We skip 10000san for now as its unclear the point or relevance especially with respect to the OS-based # TLS implementations - # We skip 1000san, sha384 and sha512 because the public badssl certificate is expired and we haven't migrated to + # We skip 1000san, sha384, rsa8192 and sha512 because the public badssl certificate is expired and we haven't migrated to # internal hosting yet # We also defer the incomplete chain test for now until we can do some further study on how to get it to # properly fail on windows and osx. # add_net_test_case(tls_client_channel_negotiation_success_sha384) # add_net_test_case(tls_client_channel_negotiation_success_sha512) - add_net_test_case(tls_client_channel_negotiation_success_rsa8192) + # add_net_test_case(tls_client_channel_negotiation_success_rsa8192) add_net_test_case(tls_client_channel_negotiation_error_no_subject) add_net_test_case(tls_client_channel_negotiation_success_no_verify_no_subject) add_net_test_case(tls_client_channel_negotiation_error_no_common_name)