-
Notifications
You must be signed in to change notification settings - Fork 30.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
src: fix cb scope bugs involved in termination
Be more aggresive to clean up the async id stack, and ensure the cleanup when terminating. Do not call SetIdle() when terminating to tolerate https://bugs.chromium.org/p/v8/issues/detail?id=13464
- Loading branch information
Showing
3 changed files
with
37 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
29 changes: 29 additions & 0 deletions
29
test/parallel/test-unhandled-exception-with-worker-inuse.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
'use strict'; | ||
const common = require('../common'); | ||
|
||
// https://github.com/nodejs/node/issues/45421 | ||
// | ||
// Check that node will not call v8::Isolate::SetIdle() when exiting | ||
// due to an unhandled exception, otherwise the assertion(enabled in | ||
// debug build only) in the SetIdle() will fail. | ||
// | ||
// The root cause of this issue is that before PerIsolateMessageListener() | ||
// is invoked by v8, v8 preserves the vm state, which is JS. However, | ||
// SetIdle() requires the vm state is either EXTERNAL or IDLE when embedder | ||
// calling it. | ||
|
||
if (process.argv[2] === 'child') { | ||
const { Worker } = require('worker_threads'); | ||
new Worker('', { eval: true }); | ||
throw new Error('xxx'); | ||
} else { | ||
const assert = require('assert'); | ||
const { spawnSync } = require('child_process'); | ||
const result = spawnSync(process.execPath, [__filename, 'child']); | ||
|
||
const stderr = result.stderr.toString().trim(); | ||
// Expect error message to be preserved | ||
assert.match(stderr, /xxx/); | ||
// Expect no crash | ||
assert(!common.nodeProcessAborted(result.status, result.signal), stderr); | ||
} |
File renamed without changes.