Skip to content

Commit

Permalink
test: add Worker + uncaughtException + process.exit() test
Browse files Browse the repository at this point in the history
PR-URL: #28259
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com>
  • Loading branch information
addaleax authored and targos committed Jul 2, 2019
1 parent 5b92eb4 commit 72f52a3
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions test/parallel/test-worker-exit-from-uncaught-exception.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
'use strict';
const common = require('../common');
const assert = require('assert');
const { Worker } = require('worker_threads');

// Check that `process.exit()` can be called inside a Worker from an uncaught
// exception handler.

// Do not use isMainThread so that this test itself can be run inside a Worker.
if (!process.env.HAS_STARTED_WORKER) {
process.env.HAS_STARTED_WORKER = 1;
const w = new Worker(__filename);
w.on('exit', common.mustCall((code) => {
assert.strictEqual(code, 42);
}));
return;
}

process.on('uncaughtException', () => {
process.exit(42);
});

throw new Error();

0 comments on commit 72f52a3

Please sign in to comment.