From df88f223bb5474a462da65ede6f266eb52f1b2ef Mon Sep 17 00:00:00 2001 From: Andrei Vagin Date: Sat, 31 Oct 2020 01:17:29 -0700 Subject: net/tcpip: connect to unset loopback address has to return EADDRNOTAVAIL In the docker container, the ipv6 loopback address is not set, and connect("::1") has to return ENEADDRNOTAVAIL in this case. Without this fix, it returns EHOSTUNREACH. PiperOrigin-RevId: 340002915 --- test/syscalls/BUILD | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'test/syscalls/BUILD') diff --git a/test/syscalls/BUILD b/test/syscalls/BUILD index f66a9ceb4..b5a4ef4df 100644 --- a/test/syscalls/BUILD +++ b/test/syscalls/BUILD @@ -694,6 +694,10 @@ syscall_test( test = "//test/syscalls/linux:socket_ip_unbound_test", ) +syscall_test( + test = "//test/syscalls/linux:socket_ip_unbound_netlink_test", +) + syscall_test( test = "//test/syscalls/linux:socket_netdevice_test", ) -- cgit v1.2.3