mirror of
https://github.com/mongodb/mongo.git
synced 2024-11-30 09:06:21 +01:00
25 lines
599 B
JavaScript
25 lines
599 B
JavaScript
//
|
|
// simple runner to run toplevel tests in jstests
|
|
//
|
|
var files = listFiles("jstests/sharding");
|
|
|
|
files.forEach(
|
|
function(x) {
|
|
|
|
if ( /_runner/.test(x.name) ||
|
|
/_lodeRunner/.test(x.name) ||
|
|
! /\.js$/.test(x.name ) ){
|
|
print(" >>>>>>>>>>>>>>> skipping " + x.name);
|
|
return;
|
|
}
|
|
|
|
|
|
print(" *******************************************");
|
|
print(" Test : " + x.name + " ...");
|
|
print(" " + Date.timeFunc( function() { load(x.name); }, 1) + "ms");
|
|
|
|
}
|
|
);
|
|
|
|
|