mirror of
https://github.com/nodejs/node-v0.x-archive.git
synced 2026-04-28 03:01:10 -04:00
This is to avoid confusion with the global "process" object, especially for the instances of node.Process.
16 lines
402 B
JavaScript
16 lines
402 B
JavaScript
include("mjsunit.js");
|
|
|
|
var exit_status = -1;
|
|
|
|
var cat = node.createChildProcess("cat");
|
|
|
|
cat.addListener("output", function (chunk) { assertEquals(null, chunk); });
|
|
cat.addListener("error", function (chunk) { assertEquals(null, chunk); });
|
|
cat.addListener("exit", function (status) { exit_status = status; });
|
|
|
|
cat.kill();
|
|
|
|
process.addListener("exit", function () {
|
|
assertTrue(exit_status > 0);
|
|
});
|