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.

22 lines
572 B

common = require("../common");
assert = common.assert
var path = require('path');
var fs = require('fs');
var got_error = false;
var filename = path.join(common.fixturesDir, "does_not_exist.txt");
fs.readFile(filename, "raw", function (err, content) {
if (err) {
got_error = true;
} else {
common.debug("cat returned some content: " + content);
common.debug("this shouldn't happen as the file doesn't exist...");
assert.equal(true, false);
}
15 years ago
});
process.addListener("exit", function () {
console.log("done");
assert.equal(true, got_error);
});