mirror of
https://github.com/mongodb/mongo.git
synced 2024-12-01 01:21:03 +01:00
bf904dc9ec
other use
19 lines
448 B
JavaScript
19 lines
448 B
JavaScript
//
|
|
// simple runner to run toplevel tests in jstests
|
|
//
|
|
var files = listFiles("jstests");
|
|
|
|
files.forEach(function(x) {
|
|
|
|
if (!/_runner/.test(x.name)) {
|
|
print(" *******************************************");
|
|
print(" Test : " + x.name + " ...");
|
|
print(" " + Date.timeFunc( function() { load(x.name); }, 1) + "ms");
|
|
}
|
|
else {
|
|
print(" >>>>>>>>>>>>>>> skipping " + x.name);
|
|
}
|
|
});
|
|
|
|
|