summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Kangas <matt.kangas@10gen.com>2013-08-22 18:21:49 -0400
committerMatt Kangas <matt.kangas@10gen.com>2013-08-22 18:21:49 -0400
commite71ca210ed90143394cdade334d834d9c4ec9303 (patch)
treea81a4225da5a0b27785b7ae82f350e234237dc04
parent0e5d98084e7c37bdbd1917caf13045af5b0e9575 (diff)
downloadmongo-e71ca210ed90143394cdade334d834d9c4ec9303.tar.gz
SERVER-10341 disable sync_passive2.js test for 2.5.2 release
We identified a performance regression that prevents this test from finishing on the Win32 builder and probably any single-core host. We should reenable the test after the performance regression is addressed.
-rw-r--r--jstests/replsets/sync_passive2.js6
1 files changed, 5 insertions, 1 deletions
diff --git a/jstests/replsets/sync_passive2.js b/jstests/replsets/sync_passive2.js
index 66db3592757..5c5cb212665 100644
--- a/jstests/replsets/sync_passive2.js
+++ b/jstests/replsets/sync_passive2.js
@@ -4,9 +4,11 @@
load("jstests/replsets/rslib.js");
+if (false) { // Test disabled until SERVER-10341 is resolved
+
var name = "sync_passive2";
var host = getHostName();
-
+
var replTest = new ReplSetTest( {name: name, nodes: 5} );
var nodes = replTest.startSet();
@@ -217,3 +219,5 @@ assert.soon(function() {
}, 'failed to change sync target', 60000);
replTest.stopSet();
+
+} // end test disabled