node/test/mjsunit/test-process-buffering.js

30 lines
596 B
JavaScript
Raw Normal View History

include("common.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;
2009-06-28 02:40:43 +08:00
});
child.addListener("exit", function (c) {
puts("exit: " + c);
assertEquals(0, c);
callback(output);
pwd_called = true;
2009-06-28 02:40:43 +08:00
});
}
2009-08-27 00:22:00 +08:00
pwd(function (result) {
2009-08-27 04:03:19 +08:00
p(result);
2009-08-27 00:22:00 +08:00
assertTrue(result.length > 1);
assertEquals("\n", result[result.length-1]);
});
process.addListener("exit", function () {
assertTrue(pwd_called);
});