summaryrefslogtreecommitdiff
path: root/jstests/decimal
diff options
context:
space:
mode:
authorEddie Louie <eddie.louie@mongodb.com>2017-05-18 11:22:09 -0400
committerEddie Louie <eddie.louie@mongodb.com>2017-06-07 14:36:31 -0400
commit103972cebb1cdfccbc76c2afd82c824ed02fc11c (patch)
tree3cdde8685b2e69f689ac85a600a41a17782b9482 /jstests/decimal
parentf263fb42124c7ab01a98c462eca63de85873aa7a (diff)
downloadmongo-103972cebb1cdfccbc76c2afd82c824ed02fc11c.tar.gz
SERVER-28590 Invoke validate command on collections before shutting down mongod in JS tests
Diffstat (limited to 'jstests/decimal')
-rw-r--r--jstests/decimal/decimal_feature_compatibility_version.js5
1 files changed, 5 insertions, 0 deletions
diff --git a/jstests/decimal/decimal_feature_compatibility_version.js b/jstests/decimal/decimal_feature_compatibility_version.js
index ec7b384d7c8..7123c28e0fc 100644
--- a/jstests/decimal/decimal_feature_compatibility_version.js
+++ b/jstests/decimal/decimal_feature_compatibility_version.js
@@ -3,6 +3,11 @@
(function() {
"use strict";
+ // Decimal data with feature compatibility version 3.2 causes collection
+ // validation failure.
+ // TODO: SERVER-29350 Remove this code when feature compatibility version 3.2 is removed.
+ TestData.skipCollectionAndIndexValidation = true;
+
const conn = MongoRunner.runMongod({});
assert.neq(null, conn, "mongod was unable to start up");