summaryrefslogtreecommitdiff
path: root/jstests/noPassthrough/directoryperdb.js
diff options
context:
space:
mode:
authorGeert Bosch <geert@mongodb.com>2018-06-12 17:27:01 -0400
committerGeert Bosch <geert@mongodb.com>2018-06-25 16:47:18 -0400
commitab0c426e60c4bdcc49b5a48a93f84828414d5ba6 (patch)
tree59eea717b0cae54e39b4981d654fd58d31d7b286 /jstests/noPassthrough/directoryperdb.js
parent5339c9a55181662545652ab7106c8f4e55109327 (diff)
downloadmongo-ab0c426e60c4bdcc49b5a48a93f84828414d5ba6.tar.gz
SERVER-35591 Remove MMAPv1 testing
Diffstat (limited to 'jstests/noPassthrough/directoryperdb.js')
-rw-r--r--jstests/noPassthrough/directoryperdb.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/jstests/noPassthrough/directoryperdb.js b/jstests/noPassthrough/directoryperdb.js
index 8561b810156..ce123ae08fb 100644
--- a/jstests/noPassthrough/directoryperdb.js
+++ b/jstests/noPassthrough/directoryperdb.js
@@ -1,5 +1,5 @@
/**
- * Tests that a mongod started with --directoryperdb will write data for database x into a direcotry
+ * Tests that a mongod started with --directoryperdb will write data for database x into a directory
* named x inside the dbpath.
*
* This test does not make sense for in-memory storage engines, since they will not produce any data
@@ -13,7 +13,7 @@
var baseDir = "jstests_directoryperdb";
var dbpath = MongoRunner.dataPath + baseDir + "/";
- var isDirectoryPerDBSupported = jsTest.options().storageEngine == "mmapv1" ||
+ var isDirectoryPerDBSupported =
jsTest.options().storageEngine == "wiredTiger" || !jsTest.options().storageEngine;
var m = MongoRunner.runMongod({dbpath: dbpath, directoryperdb: ''});