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.
25 lines
596 B
25 lines
596 B
'use strict';
|
|
|
|
require('../common');
|
|
var assert = require('assert');
|
|
var child_process = require('child_process');
|
|
var ChildProcess = child_process.ChildProcess;
|
|
assert.strictEqual(typeof ChildProcess, 'function');
|
|
|
|
// test that we can call spawn
|
|
var child = new ChildProcess();
|
|
child.spawn({
|
|
file: process.execPath,
|
|
args: ['--interactive'],
|
|
cwd: process.cwd(),
|
|
stdio: 'pipe'
|
|
});
|
|
|
|
assert.strictEqual(child.hasOwnProperty('pid'), true);
|
|
|
|
// try killing with invalid signal
|
|
assert.throws(function() {
|
|
child.kill('foo');
|
|
}, /Unknown signal: foo/);
|
|
|
|
assert.strictEqual(child.kill(), true);
|
|
|