Fix test/pummel/test-exec.js

This commit is contained in:
Ryan Dahl 2011-10-12 16:11:55 -07:00
parent 9557020dc1
commit 651b8a06d6
2 changed files with 1 additions and 3 deletions

View File

@ -469,6 +469,7 @@ ChildProcess.prototype.kill = function(sig) {
}
if (this._internal) {
this.killed = true;
var r = this._internal.kill(signal);
// TODO: raise error if r == -1?
}

View File

@ -19,9 +19,6 @@
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
// USE OR OTHER DEALINGS IN THE SOFTWARE.
// libuv-broken
var common = require('../common');
var assert = require('assert');
var exec = require('child_process').exec;