blob: f0c2060294a3ab423e7dc1e66582f2461b8d253f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// Storage Node Watchdog - validate --dbpath
//
load("jstests/watchdog/lib/wd_test_common.js");
(function() {
'use strict';
let control = new CharybdefsControl("dbpath_hang");
const dbPath = control.getMountPath() + "/db";
testFuseAndMongoD(control, {dbpath: dbPath});
})();
|