Skip to content

Commit 59f00d7

Browse files
win,test: disable test case failing with ClangCL
PR-URL: #57397 Reviewed-By: Chengzhong Wu <[email protected]> Reviewed-By: Luigi Pinca <[email protected]>
1 parent a2a53cb commit 59f00d7

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

test/parallel/test-child-process-kill.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,9 @@ assert.strictEqual(cat.killed, true);
4242

4343
// Test different types of kill signals on Windows.
4444
if (common.isWindows) {
45-
for (const sendSignal of ['SIGTERM', 'SIGKILL', 'SIGQUIT', 'SIGINT']) {
45+
// SIGQUIT is not supported on Windows 2022, Visual Studio 2022 ClangCL-produced node.exe.
46+
// TODO(StefanStojanovic): Investigate this and re-enable it when the issue is fixed.
47+
for (const sendSignal of ['SIGTERM', 'SIGKILL', /* 'SIGQUIT', */'SIGINT']) {
4648
const process = spawn('cmd');
4749
process.on('exit', (code, signal) => {
4850
assert.strictEqual(code, null);

0 commit comments

Comments
 (0)