diff options
author | Louis Williams <louis.williams@mongodb.com> | 2021-04-08 09:06:42 -0400 |
---|---|---|
committer | Evergreen Agent <no-reply@evergreen.mongodb.com> | 2021-04-08 14:19:47 +0000 |
commit | 24816f527630968a5047c5f9ab73c793b5b7d5a9 (patch) | |
tree | e503a836af82eb179ea1560ecd2a07f54761a612 /jstests | |
parent | 4a609254bd85849a4a20d0a41767e9ab6683bddd (diff) | |
download | mongo-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.js | 7 |
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(); |