mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
726 B
21 lines
726 B
'use strict';
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const spawn = require('child_process').spawn;
|
|
const path = require('path');
|
|
|
|
const exitScript = path.join(common.fixturesDir, 'exit.js');
|
|
const exitChild = spawn(process.argv[0], [exitScript, 23]);
|
|
exitChild.on('exit', common.mustCall(function(code, signal) {
|
|
assert.strictEqual(code, 23);
|
|
assert.strictEqual(signal, null);
|
|
}));
|
|
|
|
|
|
const errorScript = path.join(common.fixturesDir,
|
|
'child_process_should_emit_error.js');
|
|
const errorChild = spawn(process.argv[0], [errorScript]);
|
|
errorChild.on('exit', common.mustCall(function(code, signal) {
|
|
assert.ok(code !== 0);
|
|
assert.strictEqual(signal, null);
|
|
}));
|
|
|