Lines Matching refs:status
79 w.on('exit', (status) => process.exit(status === 0 ? 0 : 1));
174 child.on('exit', (status, signal) => {
178 assert.strictEqual(status, 0);
180 assert.notStrictEqual(status, 0);
192 console.log('exit code:', status, 'signal:', signal);
204 const { status } = spawnSync(
211 assert.notStrictEqual(status, 0, 'Should not allow multiple policies');
220 const { status } = spawnSync(
227 assert.notStrictEqual(status, 0, 'Should not allow missing policies');