summaryrefslogtreecommitdiff
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:48:02 -0500
commit6ce1c2d27b8f372748968d973eebbc78194d9bb1 (patch)
tree562512f08c203088071a59bee09f07e84f0821ab
parent5043299e1578e1248c35ba0a83be0c841a16fa92 (diff)
downloadmongo-6ce1c2d27b8f372748968d973eebbc78194d9bb1.tar.gz
SERVER-28239 Disabling transport layer legacy test
Disabling test until we can allocate port numbers safely for unit tests (cherry picked from commit f8f26d50a9a14e7d269f878e239991d73ff4864a)
-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{};