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.
26 lines
591 B
26 lines
591 B
10 years ago
|
'use strict';
|
||
|
|
||
|
var assert = require('assert');
|
||
|
var common = require('../common');
|
||
|
var child_process = require('child_process');
|
||
|
var ChildProcess = child_process.ChildProcess;
|
||
|
assert.equal(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.equal(child.hasOwnProperty('pid'), true);
|
||
|
|
||
|
// try killing with invalid signal
|
||
|
assert.throws(function() {
|
||
|
child.kill('foo');
|
||
|
}, /Unknown signal: foo/);
|
||
|
|
||
|
assert.equal(child.kill(), true);
|