mirror of
https://github.com/mongodb/mongo.git
synced 2024-11-30 17:10:48 +01:00
14 lines
307 B
JavaScript
14 lines
307 B
JavaScript
// Storage Node Watchdog - validate watchdog monitors --logpath
|
|
//
|
|
load("jstests/watchdog/lib/wd_test_common.js");
|
|
|
|
(function() {
|
|
'use strict';
|
|
|
|
let control = new CharybdefsControl("logpath_hang");
|
|
|
|
const logpath = control.getMountPath();
|
|
|
|
testFuseAndMongoD(control, {logpath: logpath + "/foo.log"});
|
|
})();
|