summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCharlie Swanson <cswanson310@gmail.com>2015-02-26 15:18:29 -0500
committerCharlie Swanson <cswanson310@gmail.com>2015-03-09 11:16:40 -0400
commit5c5b5b0a794490314b0b01db27ade099a1f49fcd (patch)
tree4249e93d8a1a184c6bb5129b31e51fe377ffaf51
parent5d6f18e12ce82f72478722f240af91fe624a87b9 (diff)
downloadmongo-5c5b5b0a794490314b0b01db27ade099a1f49fcd.tar.gz
SERVER-17395: Disable fsm tests that were previously disabled.
(cherry picked from commit a0c4f1ffffb5fd6523ccc2feb3ffec6c2882e64f)
-rw-r--r--jstests/concurrency/fsm_all_replication.js6
-rw-r--r--jstests/concurrency/fsm_all_sharded.js24
2 files changed, 6 insertions, 24 deletions
diff --git a/jstests/concurrency/fsm_all_replication.js b/jstests/concurrency/fsm_all_replication.js
index 2feb406082f..784f7386495 100644
--- a/jstests/concurrency/fsm_all_replication.js
+++ b/jstests/concurrency/fsm_all_replication.js
@@ -28,6 +28,6 @@ var blacklist = [
].map(function(file) { return dir + '/' + file; });
// SERVER-16196 re-enable executing workloads against replica sets
-runWorkloadsSerially(ls(dir).filter(function(file) {
- return !Array.contains(blacklist, file);
-}), { replication: true });
+// runWorkloadsSerially(ls(dir).filter(function(file) {
+// return !Array.contains(blacklist, file);
+// }), { replication: true });
diff --git a/jstests/concurrency/fsm_all_sharded.js b/jstests/concurrency/fsm_all_sharded.js
index 06f52d19355..8b143a268d7 100644
--- a/jstests/concurrency/fsm_all_sharded.js
+++ b/jstests/concurrency/fsm_all_sharded.js
@@ -7,24 +7,6 @@ var dir = 'jstests/concurrency/fsm_workloads';
var blacklist = [
// Disabled due to known bugs
'agg_match.js', // SERVER-3645 .count() can be wrong on sharded collections
- 'explain.js',
- 'explain_aggregate.js',
- 'explain_count.js',
- 'explain_find.js',
- 'explain_group.js',
- 'explain_remove.js',
- 'explain_update.js',
- 'rename_capped_collection_chain.js',
- 'rename_capped_collection_dbname_chain.js',
- 'rename_capped_collection_dbname_droptarget.js',
- 'rename_capped_collection_droptarget.js',
- 'rename_collection_chain.js',
- 'rename_collection_dbname_chain.js',
- 'rename_collection_dbname_droptarget.js',
- 'rename_collection_droptarget.js',
- 'update_upsert_multi.js',
- 'update_upsert_multi_noindex.js',
- 'upsert_where.js',
'count.js', // SERVER-3645 .count() can be wrong on sharded collections
'count_limit_skip.js', // SERVER-3645 .count() can be wrong on sharded collections
'count_noindex.js', // SERVER-3645 .count() can be wrong on sharded collections
@@ -69,6 +51,6 @@ var blacklist = [
].map(function(file) { return dir + '/' + file; });
// SERVER-16196 re-enable executing workloads against sharded clusters
-runWorkloadsSerially(ls(dir).filter(function(file) {
- return !Array.contains(blacklist, file);
-}), { sharded: true });
+// runWorkloadsSerially(ls(dir).filter(function(file) {
+// return !Array.contains(blacklist, file);
+// }), { sharded: true });