Skip to content

Commit

Permalink
Add one for another ip address
Browse files Browse the repository at this point in the history
  • Loading branch information
waahm7 committed May 8, 2024
1 parent 2bcab15 commit 5f820d9
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -152,9 +152,9 @@ if(NOT BYO_CRYPTO)
add_net_test_case(tls_client_channel_negotiation_error_untrusted_root)
add_net_test_case(tls_client_channel_negotiation_error_untrusted_root_due_to_ca_override)
add_net_test_case(tls_client_channel_negotiation_no_verify_expired)
add_net_test_case(tls_client_channel_negotiation_no_verify_wrong_host)
# add_net_test_case(tls_client_channel_negotiation_no_verify_wrong_host)
# add_net_test_case(tls_client_channel_negotiation_no_verify_self_signed)
add_net_test_case(tls_client_channel_negotiation_no_verify_untrusted_root)
# add_net_test_case(tls_client_channel_negotiation_no_verify_untrusted_root)

# Badssl - Broken Crypto endpoint suite
# We don't include dh1024 as it succeeds on the windows baseline configuration and there does not seem
Expand Down
5 changes: 5 additions & 0 deletions tests/default_host_resolver_test.c
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,11 @@ static int s_test_default_host_resolver_ipv6_address_variations_fn(struct aws_al
.ip_address = "0:0:0:0:0:0:0:1",
.expected_resolved_ip_address = "::1",
},
{
.ip_address = "fd00:ec2:0:0:0:0:0:23",
.expected_resolved_ip_address = "fd00:ec2::23",
},

};

struct aws_event_loop_group *el_group = aws_event_loop_group_new_default(allocator, 1, NULL);
Expand Down

0 comments on commit 5f820d9

Please sign in to comment.