summaryrefslogtreecommitdiff
path: root/jstests/dur/dur_passthrough.js
diff options
context:
space:
mode:
authorScott Hernandez <scotthernandez@gmail.com>2014-04-25 13:13:46 -0400
committerScott Hernandez <scotthernandez@gmail.com>2014-04-25 13:13:46 -0400
commita2a055107fb6818886f1aba4ecb9dd6203b26a7a (patch)
treeb9b79eca205293d3b5abc00a7dafd9447289d46a /jstests/dur/dur_passthrough.js
parent00ffa832253b99f4678ae2d0afd561e13add0d94 (diff)
downloadmongo-a2a055107fb6818886f1aba4ecb9dd6203b26a7a.tar.gz
remove empty passthrough
Diffstat (limited to 'jstests/dur/dur_passthrough.js')
-rw-r--r--jstests/dur/dur_passthrough.js58
1 files changed, 0 insertions, 58 deletions
diff --git a/jstests/dur/dur_passthrough.js b/jstests/dur/dur_passthrough.js
deleted file mode 100644
index f13d4b888bd..00000000000
--- a/jstests/dur/dur_passthrough.js
+++ /dev/null
@@ -1,58 +0,0 @@
-//
-// simple runner to run toplevel tests in jstests
-//
-
-//TODO(mathias) add --master or make another test
-//conn = startMongodEmpty("--port", 30200, "--dbpath", MongoRunner.dataDir + "/dur_passthrough", "--dur", "--smallfiles", "--durOptions", "24");
-
-conn = startMongodEmpty("--port", 30200, "--dbpath", MongoRunner.dataDir + "/dur_passthrough", "--dur", "--nopreallocj", "--smallfiles",
-"--durOptions", "8");
-db = conn.getDB("test");
-
-function doTest() {
- var files = listFiles("jstests");
- files = files.sort(compareOn('name'));
-
- var runnerStart = new Date()
-
- files.forEach(
- function (x) {
-
- if (/[\/\\]_/.test(x.name) ||
- !/\.js$/.test(x.name) ||
- /repair/.test(x.name) || // fails on recovery
- /shellkillop/.test(x.name) || // takes forever and don't test anything new
- false // placeholder so all real tests end in ||
- )
- {
- print(" >>>>>>>>>>>>>>> skipping " + x.name);
- return;
- }
-
- print();
- print(" *******************************************");
- print(" Test : " + x.name + " ...");
- print(" " + Date.timeFunc(function () { load(x.name); }, 1) + "ms");
- gc(); // TODO SERVER-8683: remove gc() calls once resolved
- }
- );
-
- stopMongod(30200);
-
- var runnerEnd = new Date()
-
- print( "total runner time: " + ( ( runnerEnd.getTime() - runnerStart.getTime() ) / 1000 ) + "secs" )
-}
-
-if (db.serverBuildInfo().bits == 64 &&
- db.serverBuildInfo().debug == false &&
- db.hostInfo().os.type == "Linux")
-{
- doTest();
-}
-else {
- print("Skipping. Only run this test on non-debug, 64bit, Linux builds");
-}
-
-//TODO(mathias): test recovery here
-