diff options
author | Jonathan Abrahams <jonathan@mongodb.com> | 2015-07-07 15:23:17 -0400 |
---|---|---|
committer | Jonathan Abrahams <jonathan@mongodb.com> | 2015-07-07 15:23:17 -0400 |
commit | e9a8e1eda6a34d60c49c0998684ff15b1d72d0f4 (patch) | |
tree | 59d7558a7dec1400ea5f955ac8207da78a75e5ec /buildscripts | |
parent | b373e66d9aca09e73040c8bbeb54bacdb91883fb (diff) | |
download | mongo-e9a8e1eda6a34d60c49c0998684ff15b1d72d0f4.tar.gz |
SERVER-19262 Split Concurrency test suite into 3:
- Concurrency
- Concurrency_replication
- Concurrency_sharded
Diffstat (limited to 'buildscripts')
3 files changed, 26 insertions, 0 deletions
diff --git a/buildscripts/resmokeconfig/suites/concurrency.yml b/buildscripts/resmokeconfig/suites/concurrency.yml index 65b6c46f105..233c8de5cf3 100644 --- a/buildscripts/resmokeconfig/suites/concurrency.yml +++ b/buildscripts/resmokeconfig/suites/concurrency.yml @@ -2,6 +2,10 @@ selector: js_test: roots: - jstests/concurrency/*.js + exclude_files: + # Skip replication and sharding tests because they're run in different suites + - jstests/concurrency/fsm_all_replication*.js + - jstests/concurrency/fsm_all_sharded*.js executor: js_test: diff --git a/buildscripts/resmokeconfig/suites/concurrency_replication.yml b/buildscripts/resmokeconfig/suites/concurrency_replication.yml new file mode 100644 index 00000000000..1c62c3a417e --- /dev/null +++ b/buildscripts/resmokeconfig/suites/concurrency_replication.yml @@ -0,0 +1,11 @@ +selector: + js_test: + roots: + - jstests/concurrency/fsm_all_replication*.js + +# Concurrency tests that run against a replica set start one themselves. +executor: + js_test: + config: + shell_options: + nodb: '' diff --git a/buildscripts/resmokeconfig/suites/concurrency_sharded.yml b/buildscripts/resmokeconfig/suites/concurrency_sharded.yml new file mode 100644 index 00000000000..132aba312c5 --- /dev/null +++ b/buildscripts/resmokeconfig/suites/concurrency_sharded.yml @@ -0,0 +1,11 @@ +selector: + js_test: + roots: + - jstests/concurrency/fsm_all_sharded*.js + +# Concurrency tests that run against a sharded cluster start one themselves. +executor: + js_test: + config: + shell_options: + nodb: '' |