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.
 
 
 
 
 
 

29 lines
547 B

include("mjsunit.js");
var pwd_called = false;
function pwd (callback) {
var output = "";
var process = node.createProcess("pwd");
process.addListener("output", function (s) {
if (s) output += s;
});
process.addListener("exit", function(c) {
assertEquals(0, c);
callback(output);
pwd_called = true;
});
}
function onLoad () {
pwd(function (result) {
print(result);
assertTrue(result.length > 1);
assertEquals("\n", result[result.length-1]);
});
}
function onExit () {
assertTrue(pwd_called);
}