diff options
author | Andrew Morrow <acm@10gen.com> | 2013-08-22 11:59:21 -0400 |
---|---|---|
committer | Andrew Morrow <acm@10gen.com> | 2013-08-22 13:09:59 -0400 |
commit | c5a876e531ef57c3b7e60ec53ef9617bc7475969 (patch) | |
tree | 3f38e7f002b306ac86136222508c932c8b496f6b /jstests | |
parent | 11c0a28046f49909da3e9a7c681de9f2994ebc9a (diff) | |
download | mongo-c5a876e531ef57c3b7e60ec53ef9617bc7475969.tar.gz |
SERVER-10374 Disable sync only with special chars test due to SERVER-10344
Diffstat (limited to 'jstests')
-rw-r--r-- | jstests/repl/repl_sync_only_db_with_special_chars.js | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/jstests/repl/repl_sync_only_db_with_special_chars.js b/jstests/repl/repl_sync_only_db_with_special_chars.js index 286e584c7a3..b0fd88d4af5 100644 --- a/jstests/repl/repl_sync_only_db_with_special_chars.js +++ b/jstests/repl/repl_sync_only_db_with_special_chars.js @@ -1,4 +1,5 @@ -(function() { + +doTest = function() { var rt = new ReplTest( "repl_sync_only_db_with_special_chars" ); var normalDB = "abc"; @@ -16,5 +17,9 @@ assert.soon( function() { return normalDocs == 0 && specialDocs == 1; }, "Failed to only sync to " + specialDB ); -})(); +} +// Disabled because of SERVER-10344 +if (false) { + doTest() +} |