0
0
mirror of https://github.com/nodejs/node.git synced 2024-12-01 16:10:02 +01:00
nodejs/test/mjsunit/test-process-kill.js

16 lines
419 B
JavaScript
Raw Normal View History

process.mixin(require("common.js"));
2009-06-21 14:06:03 +02:00
var exit_status = -1;
var cat = process.createChildProcess("cat");
2009-08-26 18:22:00 +02:00
cat.addListener("output", function (chunk) { assertEquals(null, chunk); });
cat.addListener("error", function (chunk) { assertEquals(null, chunk); });
cat.addListener("exit", function (status) { exit_status = status; });
2009-06-21 14:06:03 +02:00
2009-08-26 18:22:00 +02:00
cat.kill();
2009-06-21 14:06:03 +02:00
process.addListener("exit", function () {
2009-06-21 14:06:03 +02:00
assertTrue(exit_status > 0);
});