Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Skip rsa8192.badssl.com Test to Fix CI #635

Merged
merged 6 commits into from
Apr 2, 2024
Merged
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion tests/tls_handler_test.c
Original file line number Diff line number Diff line change
Expand Up @@ -1309,7 +1309,11 @@ 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);
(void)s_uncommon_rsa8192_host_name;
(void)allocator;
// The certificate for rsa8192.badssl.com is expired. Disable this test until they renew the certificate or we find
// a better alternative. s_verify_good_host(allocator, s_uncommon_rsa8192_host_name, 443, NULL)
return AWS_OP_SUCCESS;
waahm7 marked this conversation as resolved.
Show resolved Hide resolved
}

AWS_TEST_CASE(tls_client_channel_negotiation_success_rsa8192, s_tls_client_channel_negotiation_success_rsa8192_fn)
Expand Down