|
|
|
@ -51,7 +51,7 @@ static void test_grpc_parse_ipv6_parity_with_getaddrinfo( |
|
|
|
|
grpc_core::ExecCtx exec_ctx; |
|
|
|
|
absl::StatusOr<grpc_core::URI> uri = grpc_core::URI::Parse(target); |
|
|
|
|
if (!uri.ok()) { |
|
|
|
|
gpr_log(GPR_ERROR, "%s", uri.status().ToString().c_str()); |
|
|
|
|
LOG(ERROR) << uri.status(); |
|
|
|
|
ASSERT_TRUE(uri.ok()); |
|
|
|
|
} |
|
|
|
|
grpc_resolved_address addr; |
|
|
|
@ -75,7 +75,7 @@ static void test_grpc_parse_ipv6_parity_with_getaddrinfo( |
|
|
|
|
struct sockaddr_in6 resolve_with_gettaddrinfo(const char* uri_text) { |
|
|
|
|
absl::StatusOr<grpc_core::URI> uri = grpc_core::URI::Parse(uri_text); |
|
|
|
|
if (!uri.ok()) { |
|
|
|
|
gpr_log(GPR_ERROR, "%s", uri.status().ToString().c_str()); |
|
|
|
|
LOG(ERROR) << uri.status(); |
|
|
|
|
EXPECT_TRUE(uri.ok()); |
|
|
|
|
} |
|
|
|
|
std::string host; |
|
|
|
|