mirror of
https://github.com/nodejs/node.git
synced 2024-11-29 23:16:30 +01:00
8b49cef10b
No need to rely on stdout output now. onExit callbacks should print stack trace from onExit failure
14 lines
344 B
JavaScript
14 lines
344 B
JavaScript
include("mjsunit.js");
|
|
var status = null;
|
|
|
|
function onLoad () {
|
|
var dirname = node.path.dirname(__filename);
|
|
var fixtures = node.path.join(dirname, "fixtures");
|
|
var filename = node.path.join(fixtures, "does_not_exist.txt");
|
|
node.fs.cat(filename, "raw", function (s) { status = s });
|
|
}
|
|
|
|
function onExit () {
|
|
assertTrue(status != 0);
|
|
}
|