11cb0ef41Sopenharmony_ci'use strict'; 21cb0ef41Sopenharmony_ciconst common = require('../common'); 31cb0ef41Sopenharmony_ciif (!common.isWindows) 41cb0ef41Sopenharmony_ci common.skip('test is windows specific'); 51cb0ef41Sopenharmony_ci 61cb0ef41Sopenharmony_ciconst assert = require('assert'); 71cb0ef41Sopenharmony_ciconst spawn = require('child_process').spawn; 81cb0ef41Sopenharmony_ci 91cb0ef41Sopenharmony_ci// This test makes sure that an aborted node process 101cb0ef41Sopenharmony_ci// exits with code 3 on Windows. 111cb0ef41Sopenharmony_ci// Spawn a child, force an abort, and then check the 121cb0ef41Sopenharmony_ci// exit code in the parent. 131cb0ef41Sopenharmony_ci 141cb0ef41Sopenharmony_ciif (process.argv[2] === 'child') { 151cb0ef41Sopenharmony_ci process.abort(); 161cb0ef41Sopenharmony_ci} else { 171cb0ef41Sopenharmony_ci const child = spawn(process.execPath, [__filename, 'child']); 181cb0ef41Sopenharmony_ci child.on('exit', common.mustCall((code, signal) => { 191cb0ef41Sopenharmony_ci assert.strictEqual(code, 134); 201cb0ef41Sopenharmony_ci assert.strictEqual(signal, null); 211cb0ef41Sopenharmony_ci })); 221cb0ef41Sopenharmony_ci} 23