Searched refs:join_host_port_expect (Results 1 – 1 of 1) sorted by relevance
/external/grpc-grpc/test/core/gpr/ |
D | host_port_test.cc | 27 static void join_host_port_expect(const char* host, int port, in join_host_port_expect() function 39 join_host_port_expect("foo", 101, "foo:101"); in test_join_host_port() 40 join_host_port_expect("", 102, ":102"); in test_join_host_port() 41 join_host_port_expect("1::2", 103, "[1::2]:103"); in test_join_host_port() 42 join_host_port_expect("[::1]", 104, "[::1]:104"); in test_join_host_port() 47 join_host_port_expect("[foo]", 105, "[foo]:105"); in test_join_host_port_garbage() 48 join_host_port_expect("[::", 106, "[:::106"); in test_join_host_port_garbage() 49 join_host_port_expect("::]", 107, "[::]]:107"); in test_join_host_port_garbage()
|