summaryrefslogtreecommitdiff
path: root/jstests
diff options
context:
space:
mode:
authorLouis Williams <louis.williams@mongodb.com>2021-04-08 09:06:42 -0400
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2021-04-08 14:19:47 +0000
commit24816f527630968a5047c5f9ab73c793b5b7d5a9 (patch)
treee503a836af82eb179ea1560ecd2a07f54761a612 /jstests
parent4a609254bd85849a4a20d0a41767e9ab6683bddd (diff)
downloadmongo-24816f527630968a5047c5f9ab73c793b5b7d5a9.tar.gz
SERVER-55681 Prevent clustered_index_types.jsfrom running in parallel suite on
ephemeralForTest
Diffstat (limited to 'jstests')
-rw-r--r--jstests/core/timeseries/clustered_index_types.js7
1 files changed, 7 insertions, 0 deletions
diff --git a/jstests/core/timeseries/clustered_index_types.js b/jstests/core/timeseries/clustered_index_types.js
index c63788a02f0..843b60390d2 100644
--- a/jstests/core/timeseries/clustered_index_types.js
+++ b/jstests/core/timeseries/clustered_index_types.js
@@ -14,6 +14,13 @@
(function() {
"use strict";
+// Although this test is tagged with 'requires_wiredtiger', this is not sufficient for ensuring
+// that the parallel suite runs this test only on WT configurations.
+if (jsTest.options().storageEngine && jsTest.options().storageEngine !== "wiredTiger") {
+ jsTest.log("Skipping test on non-WT storage engine: " + jsTest.options().storageEngine);
+ return;
+}
+
const collName = 'system.buckets.test';
const coll = db[collName];
coll.drop();