summaryrefslogtreecommitdiff
path: root/src/mongo/executor
diff options
context:
space:
mode:
authorMatt Cotter <matt.cotter@mongodb.com>2016-09-07 17:10:59 -0400
committerMatt Cotter <matt.cotter@mongodb.com>2016-09-07 17:15:55 -0400
commit5133e213c79378893f6bc7671e57789e1f6a9874 (patch)
tree9cf0a0e213787c9e67e30d3aa6a4115ff75c840f /src/mongo/executor
parent2ef0fbc8fe0c1a483080d2ddcdcd35dd94093487 (diff)
downloadmongo-5133e213c79378893f6bc7671e57789e1f6a9874.tar.gz
SERVER-26012 temporarily comment out the test for windows
Diffstat (limited to 'src/mongo/executor')
-rw-r--r--src/mongo/executor/network_interface_asio_integration_test.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mongo/executor/network_interface_asio_integration_test.cpp b/src/mongo/executor/network_interface_asio_integration_test.cpp
index 7a39a589673..24472301bdb 100644
--- a/src/mongo/executor/network_interface_asio_integration_test.cpp
+++ b/src/mongo/executor/network_interface_asio_integration_test.cpp
@@ -246,6 +246,7 @@ private:
bool _cancel;
};
+#ifndef _WIN32
TEST_F(NetworkInterfaceASIOIntegrationTest, StressTest) {
constexpr std::size_t numOps = 10000;
RemoteCommandResponse testResults[numOps];
@@ -297,6 +298,7 @@ TEST_F(NetworkInterfaceASIOIntegrationTest, StressTest) {
ASSERT_EQ(ec, expectedResults[i]);
}
}
+#endif
// Hook that intentionally never finishes
class HangingHook : public executor::NetworkConnectionHook {