summaryrefslogtreecommitdiff
path: root/src/mongo/shell/utils.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/shell/utils.js')
-rw-r--r--src/mongo/shell/utils.js15
1 files changed, 14 insertions, 1 deletions
diff --git a/src/mongo/shell/utils.js b/src/mongo/shell/utils.js
index 9794a60df4e..148eacc1c89 100644
--- a/src/mongo/shell/utils.js
+++ b/src/mongo/shell/utils.js
@@ -158,6 +158,18 @@ print.captureAllOutput = function(fn, args) {
return res;
};
+var indentStr = function(indent, s) {
+ if (typeof(s) === "undefined") {
+ s = indent;
+ indent = 0;
+ }
+ if (indent > 0) {
+ indent = (new Array(indent + 1)).join(" ");
+ s = indent + s.replace(/\n/g, "\n" + indent);
+ }
+ return s;
+};
+
if (typeof TestData == "undefined") {
TestData = undefined;
}
@@ -230,7 +242,8 @@ jsTestOptions = function() {
networkMessageCompressors: TestData.networkMessageCompressors,
skipValidationOnInvalidViewDefinitions: TestData.skipValidationOnInvalidViewDefinitions,
forceValidationWithFeatureCompatibilityVersion:
- TestData.forceValidationWithFeatureCompatibilityVersion
+ TestData.forceValidationWithFeatureCompatibilityVersion,
+ skipValidationNamespaces: TestData.skipValidationNamespaces || [],
});
}
return _jsTestOptions;