Skip to content

Commit

Permalink
skip bad test
Browse files Browse the repository at this point in the history
  • Loading branch information
waahm7 committed Apr 1, 2024
1 parent 5afc944 commit 7356c08
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tests/tls_handler_test.c
Original file line number Diff line number Diff line change
Expand Up @@ -1309,7 +1309,10 @@ AWS_STATIC_STRING_FROM_LITERAL(s_uncommon_rsa8192_host_name, "rsa8192.badssl.com

static int s_tls_client_channel_negotiation_success_rsa8192_fn(struct aws_allocator *allocator, void *ctx) {
(void)ctx;
return s_verify_good_host(allocator, s_uncommon_rsa8192_host_name, 443, NULL);
// The certificate for rsa8192.badssl.com is expired. Disable this test until they renew the test or we find a
// better alternative.
// s_verify_good_host(allocator, s_uncommon_rsa8192_host_name, 443, NULL)
return AWS_OP_SKIP;
}

AWS_TEST_CASE(tls_client_channel_negotiation_success_rsa8192, s_tls_client_channel_negotiation_success_rsa8192_fn)
Expand Down

0 comments on commit 7356c08

Please sign in to comment.