summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJason Carey <jcarey@argv.me>2017-03-08 14:44:51 -0500
committerJason Carey <jcarey@argv.me>2017-03-08 14:44:51 -0500
commitf8f26d50a9a14e7d269f878e239991d73ff4864a (patch)
tree519939585c3d3b9f996702f74e5c84f84a97dfa3 /src
parentb1ec4cfbb535ddc7ee741a76132fee67a3ab1d1e (diff)
downloadmongo-f8f26d50a9a14e7d269f878e239991d73ff4864a.tar.gz
SERVER-28239 Disabling transport layer legacy test
Disabling test until we can allocate port numbers safely for unit tests
Diffstat (limited to 'src')
-rw-r--r--src/mongo/transport/transport_layer_legacy_test.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mongo/transport/transport_layer_legacy_test.cpp b/src/mongo/transport/transport_layer_legacy_test.cpp
index 30627a9a453..b61ed7559d7 100644
--- a/src/mongo/transport/transport_layer_legacy_test.cpp
+++ b/src/mongo/transport/transport_layer_legacy_test.cpp
@@ -54,6 +54,10 @@ public:
// mongos calls end() manually, which occasionally was the second call to end() if after a primary
// stepdown. This tests verifies our fix (making end() safe to call multiple times)
TEST(TransportLayerLegacy, endSessionsDoesntDoubleClose) {
+ // Disabling this test until we can figure out the best way to allocate port numbers for unit
+ // tests
+ return;
+
ServiceEntryPointUtil sepu;
transport::TransportLayerLegacy::Options opts{};