summaryrefslogtreecommitdiff
path: root/shell/utils.js
diff options
context:
space:
mode:
authorAaron <aaron@10gen.com>2011-12-17 22:13:22 -0800
committerAaron <aaron@10gen.com>2011-12-17 22:13:22 -0800
commit3c7e80456d38cb759133c2c3e955b531f4c625ea (patch)
tree299ec99189127fde188e083e9fb0812e18731747 /shell/utils.js
parentb633da88d6e2ce407988a2edba6d884a160f256c (diff)
downloadmongo-3c7e80456d38cb759133c2c3e955b531f4c625ea.tar.gz
SERVER-4243 temporarily remove fsync2 test from parallel suite
Diffstat (limited to 'shell/utils.js')
-rw-r--r--shell/utils.js6
1 files changed, 4 insertions, 2 deletions
diff --git a/shell/utils.js b/shell/utils.js
index df9ac0bf614..adc763e3893 100644
--- a/shell/utils.js
+++ b/shell/utils.js
@@ -815,11 +815,13 @@ if ( typeof _threadInject != "undefined" ){
"jstests/notablescan.js",
"jstests/drop2.js",
"jstests/dropdb_race.js",
+ "jstests/fsync2.js", // May be placed in serialTestsArr once SERVER-4243 is fixed.
"jstests/bench_test1.js"] );
// some tests can't be run in parallel with each other
- var serialTestsArr = [ "jstests/fsync.js",
- "jstests/fsync2.js" ];
+ var serialTestsArr = [ "jstests/fsync.js"
+// ,"jstests/fsync2.js" // SERVER-4243
+ ];
var serialTests = makeKeys( serialTestsArr );
params[ 0 ] = serialTestsArr;