0
0
mirror of https://github.com/nodejs/node.git synced 2024-11-25 08:19:38 +01:00
nodejs/test/mjsunit/test-process-buffering.js

32 lines
610 B
JavaScript
Raw Normal View History

include("mjsunit.js");
var pwd_called = false;
function pwd (callback) {
var output = "";
var process = node.createProcess("pwd");
2009-06-29 13:18:30 +02:00
process.addListener("output", function (s) {
puts("stdout: " + JSON.stringify(s));
if (s) output += s;
2009-06-27 20:40:43 +02:00
});
process.addListener("exit", function (c) {
puts("exit: " + c);
assertEquals(0, c);
callback(output);
pwd_called = true;
2009-06-27 20:40:43 +02:00
});
}
function onLoad () {
pwd(function (result) {
p(result);
assertTrue(result.length > 1);
assertEquals("\n", result[result.length-1]);
});
}
function onExit () {
assertTrue(pwd_called);
}