Skip to content

Commit e155b1f

Browse files
committed
test: correct test comment
This corrects a comment on the signal type used in the test. PR-URL: #38095 Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
1 parent d61977f commit e155b1f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/abort/test-signal-handler.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ if (process.argv[2] === 'child') {
1717
const child = spawnSync(process.execPath,
1818
['--expose-internals', __filename, 'child'],
1919
{ stdio: 'inherit' });
20-
// FreeBSD and macOS use SIGILL for the kind of crash we're causing here.
20+
// FreeBSD uses SIGILL for this kind of crash.
21+
// macOS uses SIGILL or SIGTRAP (arm64) for this kind of crash.
2122
assert(child.signal === 'SIGSEGV' || child.signal === 'SIGILL' ||
2223
child.signal === 'SIGTRAP', `child.signal = ${child.signal}`);
2324
}

0 commit comments

Comments
 (0)