Disable consistently failing test.

PiperOrigin-RevId: 324017310
This commit is contained in:
Adin Scannell 2020-07-30 09:23:44 -07:00 committed by gVisor bot
parent 4cd4759238
commit 84496b3a61
1 changed files with 4 additions and 1 deletions

View File

@ -82,8 +82,11 @@ using SocketInetLoopbackTest = ::testing::TestWithParam<TestParam>;
// This test verifies that connect returns EADDRNOTAVAIL if all local ephemeral // This test verifies that connect returns EADDRNOTAVAIL if all local ephemeral
// ports are already in use for a given destination ip/port. // ports are already in use for a given destination ip/port.
//
// We disable S/R because this test creates a large number of sockets. // 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(); auto const& param = GetParam();
TestAddress const& listener = param.listener; TestAddress const& listener = param.listener;
TestAddress const& connector = param.connector; TestAddress const& connector = param.connector;