summaryrefslogtreecommitdiff
path: root/jstests/shellstartparallel.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/shellstartparallel.js')
-rw-r--r--jstests/shellstartparallel.js17
1 files changed, 0 insertions, 17 deletions
diff --git a/jstests/shellstartparallel.js b/jstests/shellstartparallel.js
deleted file mode 100644
index 59110296b26..00000000000
--- a/jstests/shellstartparallel.js
+++ /dev/null
@@ -1,17 +0,0 @@
-function f() {
- throw "intentional_throw_to_test_assert_throws";
-}
-assert.throws(f);
-
-// verify that join works
-db.sps.drop();
-join = startParallelShell("sleep(1000); db.sps.insert({x:1}); db.getLastError();");
-join();
-assert.eq(1, db.sps.count(), "join problem?");
-
-// test with a throw
-join = startParallelShell("db.sps.insert({x:1}); db.getLastError(); throw 'intentionally_uncaught';");
-join();
-assert.eq(2, db.sps.count(), "join2 problem?");
-
-print("shellstartparallel.js SUCCESS");