diff options
author | Adin Scannell <ascannell@google.com> | 2020-07-30 09:23:44 -0700 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-07-30 09:25:58 -0700 |
commit | 84496b3a619def2db0e25ab41f029823621bc713 (patch) | |
tree | 4fa3b7cda1b32c86e703fdb3358cf2dc557f15c6 | |
parent | 4cd4759238655e35c8dc63723f4e55014b5ea9ea (diff) |
Disable consistently failing test.
PiperOrigin-RevId: 324017310
-rw-r--r-- | test/syscalls/linux/socket_inet_loopback_nogotsan.cc | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/test/syscalls/linux/socket_inet_loopback_nogotsan.cc b/test/syscalls/linux/socket_inet_loopback_nogotsan.cc index 2324c7f6a..791e2bd51 100644 --- a/test/syscalls/linux/socket_inet_loopback_nogotsan.cc +++ b/test/syscalls/linux/socket_inet_loopback_nogotsan.cc @@ -82,8 +82,11 @@ using SocketInetLoopbackTest = ::testing::TestWithParam<TestParam>; // This test verifies that connect returns EADDRNOTAVAIL if all local ephemeral // ports are already in use for a given destination ip/port. +// // We disable S/R because this test creates a large number of sockets. -TEST_P(SocketInetLoopbackTest, TestTCPPortExhaustion_NoRandomSave) { +// +// FIXME(b/162475855): This test is failing reliably. +TEST_P(SocketInetLoopbackTest, DISABLED_TestTCPPortExhaustion_NoRandomSave) { auto const& param = GetParam(); TestAddress const& listener = param.listener; TestAddress const& connector = param.connector; |