blob: 2d3bb719f11b34008b93a5b5b93d3226a78bc76a (
plain)
1
2
3
4
5
6
|
function storageEngineIsWiredTigerOrInMemory() {
// We assume that WiredTiger is the default storage engine, if the storage engine is
// unspecified in the test options.
return !jsTest.options().storageEngine || jsTest.options().storageEngine === "wiredTiger" ||
jsTest.options().storageEngine === "inMemory";
}
|