You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
608 B

node.mixin(require("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;
});
child.addListener("exit", function (c) {
puts("exit: " + c);
assertEquals(0, c);
callback(output);
pwd_called = true;
});
}
15 years ago
pwd(function (result) {
15 years ago
p(result);
15 years ago
assertTrue(result.length > 1);
assertEquals("\n", result[result.length-1]);
});
process.addListener("exit", function () {
assertTrue(pwd_called);
});