We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0523b5e commit 1f7b08aCopy full SHA for 1f7b08a
1 file changed
test/parallel/test-child-process-kill.js
@@ -42,7 +42,9 @@ assert.strictEqual(cat.killed, true);
42
43
// Test different types of kill signals on Windows.
44
if (common.isWindows) {
45
- for (const sendSignal of ['SIGTERM', 'SIGKILL', 'SIGQUIT', 'SIGINT']) {
+ // 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']) {
48
const process = spawn('cmd');
49
process.on('exit', (code, signal) => {
50
assert.strictEqual(code, null);
0 commit comments