summaryrefslogtreecommitdiff
path: root/jstests/core/shellstartparallel.js
blob: 947ddf24bf47c0eabb90606883e841191d6531f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// @tags: [
//   requires_fastcount,
//   uses_multiple_connections,
// ]

function f() {
    throw Error("intentional_throw_to_test_assert_throws");
}
assert.throws(f);

// verify that join works
db.sps.drop();
var awaitShell = startParallelShell("sleep(1000); db.sps.insert({x:1});");
awaitShell();
assert.eq(1, db.sps.count(), "join problem?");

// test with a throw
awaitShell = startParallelShell("db.sps.insert({x:1}); throw Error('intentionally_uncaught');");
var exitCode = awaitShell({checkExitSuccess: false});
assert.neq(0, exitCode, "expected shell to exit abnormally due to an uncaught exception");
assert.eq(2, db.sps.count(), "join2 problem?");

print("shellstartparallel.js SUCCESS");