0
0
mirror of https://github.com/nodejs/node.git synced 2024-11-29 23:16:30 +01:00
nodejs/test/mjsunit/test-process-buffering.js
Ryan ad9d683f9f API: rename node.Process to node.ChildProcess
This is to avoid confusion with the global "process" object, especially for
the instances of node.Process.
2009-08-26 22:36:45 +02:00

30 lines
597 B
JavaScript

include("mjsunit.js");
var pwd_called = false;
function pwd (callback) {
var output = "";
var child = node.createChildProcess("pwd");
child.addListener("output", function (s) {
puts("stdout: " + JSON.stringify(s));
if (s) output += s;
});
child.addListener("exit", function (c) {
puts("exit: " + c);
assertEquals(0, c);
callback(output);
pwd_called = true;
});
}
pwd(function (result) {
p(result);
assertTrue(result.length > 1);
assertEquals("\n", result[result.length-1]);
});
process.addListener("exit", function () {
assertTrue(pwd_called);
});