summaryrefslogtreecommitdiff
path: root/src/mongo/shell/utils.js
diff options
context:
space:
mode:
authorJonathan Abrahams <jonathan@mongodb.com>2018-01-08 10:46:13 -0500
committerJonathan Abrahams <jonathan@mongodb.com>2018-01-08 10:46:13 -0500
commit56ba266ca7eb46bfca0dc15ba0ca2290237db713 (patch)
tree1f3226a64f3b6c807dd350b88de4a449e9aa08df /src/mongo/shell/utils.js
parentaf6bd1d39b42cc3d99c5854c6e280df31e858442 (diff)
downloadmongo-56ba266ca7eb46bfca0dc15ba0ca2290237db713.tar.gz
SERVER-32243 Add an option to have the validate hook skip some collections
Diffstat (limited to 'src/mongo/shell/utils.js')
-rw-r--r--src/mongo/shell/utils.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mongo/shell/utils.js b/src/mongo/shell/utils.js
index 6b7252888cd..6bb552d89da 100644
--- a/src/mongo/shell/utils.js
+++ b/src/mongo/shell/utils.js
@@ -254,6 +254,7 @@ jsTestOptions = function() {
TestData.hasOwnProperty("skipValidationOnNamespaceNotFound")
? TestData.skipValidationOnNamespaceNotFound
: true,
+ skipValidationNamespaces: TestData.skipValidationNamespaces || [],
skipCheckingUUIDsConsistentAcrossCluster:
TestData.skipCheckingUUIDsConsistentAcrossCluster || false,
jsonSchemaTestFile: TestData.jsonSchemaTestFile,