summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Guo <robertguo@me.com>2016-08-12 15:22:03 -0400
committerRobert Guo <robertguo@me.com>2016-08-25 13:03:12 -0400
commit402692527c3b278a3231752c2bd2236576bae05f (patch)
treedb7f4831902bfb92738d3b11a059d2bb98769c3a
parentf4bb75a1af39f9b787690dfe59493e18bd7579bd (diff)
downloadmongo-402692527c3b278a3231752c2bd2236576bae05f.tar.gz
SERVER-25587 blacklist findAndModify_update_grow
(cherry picked from commit 20db324b4454c41bfb304e518dfb4af0f696d11d)
-rw-r--r--jstests/concurrency/fsm_all_replication.js5
-rw-r--r--jstests/concurrency/fsm_all_sharded_replication.js1
-rw-r--r--jstests/concurrency/fsm_all_sharded_replication_with_balancer.js1
3 files changed, 5 insertions, 2 deletions
diff --git a/jstests/concurrency/fsm_all_replication.js b/jstests/concurrency/fsm_all_replication.js
index 5850c3054da..31770af9f80 100644
--- a/jstests/concurrency/fsm_all_replication.js
+++ b/jstests/concurrency/fsm_all_replication.js
@@ -6,8 +6,9 @@ var dir = 'jstests/concurrency/fsm_workloads';
var blacklist = [
// Disabled due to MongoDB restrictions and/or workload restrictions
- 'agg_group_external.js', // uses >100MB of data, which can overwhelm test hosts
- 'agg_sort_external.js', // uses >100MB of data, which can overwhelm test hosts
+ 'agg_group_external.js', // uses >100MB of data, which can overwhelm test hosts
+ 'agg_sort_external.js', // uses >100MB of data, which can overwhelm test hosts
+ 'findAndModify_update_grow.js', // can cause OOM kills on test hosts
].map(function(file) {
return dir + '/' + file;
});
diff --git a/jstests/concurrency/fsm_all_sharded_replication.js b/jstests/concurrency/fsm_all_sharded_replication.js
index 5d785d6218f..d4068148d47 100644
--- a/jstests/concurrency/fsm_all_sharded_replication.js
+++ b/jstests/concurrency/fsm_all_sharded_replication.js
@@ -47,6 +47,7 @@ var blacklist = [
'convert_to_capped_collection_index.js', // convertToCapped can't be run on mongos processes
'findAndModify_remove_queue.js', // remove cannot be {} for findAndModify
'findAndModify_update_collscan.js', // findAndModify requires a shard key
+ 'findAndModify_update_grow.js', // can cause OOM kills on test hosts
'findAndModify_update_queue.js', // findAndModify requires a shard key
'group.js', // the group command cannot be issued against a sharded cluster
'group_cond.js', // the group command cannot be issued against a sharded cluster
diff --git a/jstests/concurrency/fsm_all_sharded_replication_with_balancer.js b/jstests/concurrency/fsm_all_sharded_replication_with_balancer.js
index 4825bdcfa18..444f7eab3cb 100644
--- a/jstests/concurrency/fsm_all_sharded_replication_with_balancer.js
+++ b/jstests/concurrency/fsm_all_sharded_replication_with_balancer.js
@@ -52,6 +52,7 @@ var blacklist = [
'convert_to_capped_collection_index.js', // convertToCapped can't be run on mongos processes
'findAndModify_remove_queue.js', // remove cannot be {} for findAndModify
'findAndModify_update_collscan.js', // findAndModify requires a shard key
+ 'findAndModify_update_grow.js', // can cause OOM kills on test hosts
'findAndModify_update_queue.js', // findAndModify requires a shard key
'group.js', // the group command cannot be issued against a sharded cluster
'group_cond.js', // the group command cannot be issued against a sharded cluster