diff options
author | Eddie Louie <eddie.louie@mongodb.com> | 2017-08-11 15:39:10 -0400 |
---|---|---|
committer | Eddie Louie <eddie.louie@mongodb.com> | 2017-08-12 11:23:28 -0400 |
commit | 2b4bac239373acec5c0388aac8fe584dbf611eca (patch) | |
tree | 821b41cbb7676128bae579f5b9ce311045cfee45 /buildscripts/resmokeconfig | |
parent | 8e715b9fefaaffde4f2f5ef7b0d3db1a762a8308 (diff) | |
download | mongo-2b4bac239373acec5c0388aac8fe584dbf611eca.tar.gz |
SERVER-30266 Enable TestData.skipValidationOnNamespaceNotFound by default to bypass collection
validation error due to namespace not found for sharding and replicaset tests
Diffstat (limited to 'buildscripts/resmokeconfig')
9 files changed, 38 insertions, 0 deletions
diff --git a/buildscripts/resmokeconfig/suites/concurrency.yml b/buildscripts/resmokeconfig/suites/concurrency.yml index 6ba0a320d77..49651dd10fe 100644 --- a/buildscripts/resmokeconfig/suites/concurrency.yml +++ b/buildscripts/resmokeconfig/suites/concurrency.yml @@ -17,6 +17,10 @@ executor: readMode: commands hooks: - class: ValidateCollections + shell_options: + global_vars: + TestData: + skipValidationOnNamespaceNotFound: false - class: CleanEveryN n: 20 fixture: diff --git a/buildscripts/resmokeconfig/suites/core.yml b/buildscripts/resmokeconfig/suites/core.yml index 1d417e9db18..1156c5e88cb 100644 --- a/buildscripts/resmokeconfig/suites/core.yml +++ b/buildscripts/resmokeconfig/suites/core.yml @@ -10,6 +10,10 @@ executor: readMode: commands hooks: - class: ValidateCollections + shell_options: + global_vars: + TestData: + skipValidationOnNamespaceNotFound: false - class: CleanEveryN n: 20 fixture: diff --git a/buildscripts/resmokeconfig/suites/core_auth.yml b/buildscripts/resmokeconfig/suites/core_auth.yml index de1eea06c48..66bdaabc083 100644 --- a/buildscripts/resmokeconfig/suites/core_auth.yml +++ b/buildscripts/resmokeconfig/suites/core_auth.yml @@ -30,6 +30,15 @@ executor: username: __system readMode: commands hooks: + - class: ValidateCollections + shell_options: + global_vars: + TestData: + auth: true + authMechanism: SCRAM-SHA-1 + keyFile: *keyFile + keyFileData: *keyFileData + skipValidationOnNamespaceNotFound: false - class: CleanEveryN n: 20 fixture: diff --git a/buildscripts/resmokeconfig/suites/core_ese.yml b/buildscripts/resmokeconfig/suites/core_ese.yml index 1a851cbbd2c..4a3b1f3c092 100644 --- a/buildscripts/resmokeconfig/suites/core_ese.yml +++ b/buildscripts/resmokeconfig/suites/core_ese.yml @@ -14,6 +14,10 @@ executor: readMode: commands hooks: - class: ValidateCollections + shell_options: + global_vars: + TestData: + skipValidationOnNamespaceNotFound: false - class: CleanEveryN n: 20 fixture: diff --git a/buildscripts/resmokeconfig/suites/core_minimum_batch_size.yml b/buildscripts/resmokeconfig/suites/core_minimum_batch_size.yml index 96fa4b9ad94..1b854417d16 100644 --- a/buildscripts/resmokeconfig/suites/core_minimum_batch_size.yml +++ b/buildscripts/resmokeconfig/suites/core_minimum_batch_size.yml @@ -22,6 +22,10 @@ executor: eval: load("jstests/libs/override_methods/find_batch_size.js"); hooks: - class: ValidateCollections + shell_options: + global_vars: + TestData: + skipValidationOnNamespaceNotFound: false - class: CleanEveryN n: 20 fixture: diff --git a/buildscripts/resmokeconfig/suites/core_op_query.yml b/buildscripts/resmokeconfig/suites/core_op_query.yml index 56d4de905e2..3051382598a 100644 --- a/buildscripts/resmokeconfig/suites/core_op_query.yml +++ b/buildscripts/resmokeconfig/suites/core_op_query.yml @@ -11,6 +11,10 @@ executor: readMode: commands hooks: - class: ValidateCollections + shell_options: + global_vars: + TestData: + skipValidationOnNamespaceNotFound: false - class: CleanEveryN n: 20 fixture: diff --git a/buildscripts/resmokeconfig/suites/dur_jscore_passthrough.yml b/buildscripts/resmokeconfig/suites/dur_jscore_passthrough.yml index 14e390e7ff3..b4719eefb8c 100644 --- a/buildscripts/resmokeconfig/suites/dur_jscore_passthrough.yml +++ b/buildscripts/resmokeconfig/suites/dur_jscore_passthrough.yml @@ -13,6 +13,10 @@ executor: readMode: commands hooks: - class: ValidateCollections + shell_options: + global_vars: + TestData: + skipValidationOnNamespaceNotFound: false - class: CleanEveryN n: 20 fixture: diff --git a/buildscripts/resmokeconfig/suites/jstestfuzz.yml b/buildscripts/resmokeconfig/suites/jstestfuzz.yml index ea890e97fd9..b5875ec229b 100644 --- a/buildscripts/resmokeconfig/suites/jstestfuzz.yml +++ b/buildscripts/resmokeconfig/suites/jstestfuzz.yml @@ -14,6 +14,7 @@ executor: global_vars: TestData: skipValidationOnInvalidViewDefinitions: true + skipValidationOnNamespaceNotFound: false fixture: class: MongoDFixture mongod_options: diff --git a/buildscripts/resmokeconfig/suites/session_jscore_passthrough.yml b/buildscripts/resmokeconfig/suites/session_jscore_passthrough.yml index 29484191b6d..c89afbe78cd 100644 --- a/buildscripts/resmokeconfig/suites/session_jscore_passthrough.yml +++ b/buildscripts/resmokeconfig/suites/session_jscore_passthrough.yml @@ -11,6 +11,10 @@ executor: readMode: commands hooks: - class: ValidateCollections + shell_options: + global_vars: + TestData: + skipValidationOnNamespaceNotFound: false - class: CleanEveryN n: 20 fixture: |