summaryrefslogtreecommitdiff
path: root/jstests/parallel
diff options
context:
space:
mode:
authorMax Hirschhorn <max.hirschhorn@mongodb.com>2014-12-02 16:02:37 -0500
committerMax Hirschhorn <max.hirschhorn@mongodb.com>2014-12-02 16:12:51 -0500
commit9db6b7d7ad6e585f9bc9b0779db10d53535b4b68 (patch)
treec4c6338278017f337ba8726785066fbf5c07a415 /jstests/parallel
parenta6a420f7f68dea6ee86f8dfbf91cdf6e07916eb8 (diff)
downloadmongo-9db6b7d7ad6e585f9bc9b0779db10d53535b4b68.tar.gz
Revert "SERVER-16196 Enable execution of workloads against standalone mongod."
This reverts commit 113fb30b65cded6ece1160c962d64fa232440b7d. Will re-enable the tests once memory overhead issues with the mongo shell are resolved.
Diffstat (limited to 'jstests/parallel')
-rw-r--r--jstests/parallel/fsm_all.js7
-rw-r--r--jstests/parallel/fsm_all_composed.js7
-rw-r--r--jstests/parallel/fsm_all_simultaneous.js7
3 files changed, 12 insertions, 9 deletions
diff --git a/jstests/parallel/fsm_all.js b/jstests/parallel/fsm_all.js
index e180556e1fa..4d29784e7b3 100644
--- a/jstests/parallel/fsm_all.js
+++ b/jstests/parallel/fsm_all.js
@@ -6,6 +6,7 @@ var blacklist = [
'indexed_insert_multikey.js' // SERVER-16143
].map(function(file) { return dir + '/' + file; });
-runWorkloadsSerially(ls(dir).filter(function(file) {
- return !Array.contains(blacklist, file);
-}));
+// SERVER-16196 re-enable executing workloads
+// runWorkloadsSerially(ls(dir).filter(function(file) {
+// return !Array.contains(blacklist, file);
+// }));
diff --git a/jstests/parallel/fsm_all_composed.js b/jstests/parallel/fsm_all_composed.js
index 48a31957ceb..594ecdbac81 100644
--- a/jstests/parallel/fsm_all_composed.js
+++ b/jstests/parallel/fsm_all_composed.js
@@ -7,6 +7,7 @@ var blacklist = [
'indexed_insert_multikey_noindex.js' // SERVER-16143
].map(function(file) { return dir + '/' + file; });
-runMixtureOfWorkloads(ls(dir).filter(function(file) {
- return !Array.contains(blacklist, file);
-}));
+// SERVER-16196 re-enable executing workloads
+// runMixtureOfWorkloads(ls(dir).filter(function(file) {
+// return !Array.contains(blacklist, file);
+// }));
diff --git a/jstests/parallel/fsm_all_simultaneous.js b/jstests/parallel/fsm_all_simultaneous.js
index baabfce189d..8cd32a0ef90 100644
--- a/jstests/parallel/fsm_all_simultaneous.js
+++ b/jstests/parallel/fsm_all_simultaneous.js
@@ -6,6 +6,7 @@ var blacklist = [
'indexed_insert_multikey.js' // SERVER-16143
].map(function(file) { return dir + '/' + file; });
-runWorkloadsInParallel(ls(dir).filter(function(file) {
- return !Array.contains(blacklist, file);
-}));
+// SERVER-16196 re-enable executing workloads
+// runWorkloadsInParallel(ls(dir).filter(function(file) {
+// return !Array.contains(blacklist, file);
+// }));