summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Hirschhorn <max.hirschhorn@mongodb.com>2017-08-21 11:24:19 -0400
committerMax Hirschhorn <max.hirschhorn@mongodb.com>2017-08-21 11:24:19 -0400
commit3128427f77397916967e3eb684dfed845bb1638a (patch)
tree91c0cddccb1360ad2ea5b5791929320f1087c8ab
parentb136dbce0f79bed6d62df6de34e10bb247a80249 (diff)
downloadmongo-3128427f77397916967e3eb684dfed845bb1638a.tar.gz
SERVER-30325 Temporarily exclude dbhash check on "config" database.r3.5.12
This should avoid additional Evergreen failures from the jstestfuzz_replication_initsync and jstestfuzz_replication_initsync_WT tasks.
-rw-r--r--buildscripts/resmokeconfig/suites/jstestfuzz_replication_initsync.yml2
-rw-r--r--jstests/hooks/run_initial_sync_node_validation.js3
2 files changed, 4 insertions, 1 deletions
diff --git a/buildscripts/resmokeconfig/suites/jstestfuzz_replication_initsync.yml b/buildscripts/resmokeconfig/suites/jstestfuzz_replication_initsync.yml
index c9c9ad25fb9..d5c17ffc8f2 100644
--- a/buildscripts/resmokeconfig/suites/jstestfuzz_replication_initsync.yml
+++ b/buildscripts/resmokeconfig/suites/jstestfuzz_replication_initsync.yml
@@ -17,6 +17,8 @@ executor:
shell_options:
global_vars:
TestData:
+ excludedDBsFromDBHash:
+ - config
skipValidationOnInvalidViewDefinitions: true
fixture:
class: ReplicaSetFixture
diff --git a/jstests/hooks/run_initial_sync_node_validation.js b/jstests/hooks/run_initial_sync_node_validation.js
index 769409c534d..78d6685a23c 100644
--- a/jstests/hooks/run_initial_sync_node_validation.js
+++ b/jstests/hooks/run_initial_sync_node_validation.js
@@ -42,7 +42,8 @@
to ensure we're validating the entire contents of the collection */
// For checkDBHashes
- rst.checkReplicatedDataHashes();
+ var excludedDBs = jsTest.options().excludedDBsFromDBHash || [];
+ rst.checkReplicatedDataHashes(undefined, excludedDBs);
load('jstests/hooks/run_validate_collections.js');