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.

33 lines
792 B

14 years ago
var common = require('../common');
var assert = require('assert');
var spawn = require('child_process').spawn;
var path = require('path');
14 years ago
var exits = 0;
var exitScript = path.join(common.fixturesDir, 'exit.js');
14 years ago
var exitChild = spawn(process.argv[0], [exitScript, 23]);
exitChild.addListener('exit', function(code, signal) {
assert.strictEqual(code, 23);
assert.strictEqual(signal, null);
exits++;
});
var errorScript = path.join(common.fixturesDir,
'child_process_should_emit_error.js');
14 years ago
var errorChild = spawn(process.argv[0], [errorScript]);
errorChild.addListener('exit', function(code, signal) {
assert.ok(code !== 0);
assert.strictEqual(signal, null);
exits++;
});
process.addListener('exit', function() {
assert.equal(2, exits);
});