summaryrefslogtreecommitdiff
path: root/jstests/noPassthrough/backup_restore_rolling.js
diff options
context:
space:
mode:
authorGregory Noma <gregory.noma@gmail.com>2022-05-05 18:29:25 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2022-05-05 22:09:42 +0000
commit6593f72ace4d44ec2addeff3efe49467e3ffb9a9 (patch)
tree912aef0e130149a02b66e4336f0f7e451567a908 /jstests/noPassthrough/backup_restore_rolling.js
parent74d27a4f0d7fa53fb8ba261185a54ea61c9fbd58 (diff)
downloadmongo-6593f72ace4d44ec2addeff3efe49467e3ffb9a9.tar.gz
SERVER-66142 Audit usages of `requires_wiredtiger` tag
Diffstat (limited to 'jstests/noPassthrough/backup_restore_rolling.js')
-rw-r--r--jstests/noPassthrough/backup_restore_rolling.js13
1 files changed, 3 insertions, 10 deletions
diff --git a/jstests/noPassthrough/backup_restore_rolling.js b/jstests/noPassthrough/backup_restore_rolling.js
index d629297d630..aa7b9ed3315 100644
--- a/jstests/noPassthrough/backup_restore_rolling.js
+++ b/jstests/noPassthrough/backup_restore_rolling.js
@@ -13,7 +13,6 @@
* not work for ephemeral storage engines, as they do not store any data in the dbpath.
* @tags: [
* requires_persistence,
- * requires_wiredtiger,
* ]
*/
@@ -31,16 +30,10 @@ if (_isWindows()) {
// Grab the storage engine, default is wiredTiger
var storageEngine = jsTest.options().storageEngine || "wiredTiger";
-// Skip this test if not running with the "wiredTiger" storage engine.
-if (storageEngine !== 'wiredTiger') {
- jsTest.log('Skipping test because storageEngine is not "wiredTiger"');
- return;
-}
-
-// Skip this test if running with --nojournal and WiredTiger.
+// Skip this test if running with --nojournal.
if (jsTest.options().noJournal) {
- print("Skipping test because running WiredTiger without journaling isn't a valid" +
- " replica set configuration");
+ print(
+ "Skipping test because running without journaling isn't a valid replica set configuration");
return;
}