Skip to content
Snippets Groups Projects
Commit 32cad313 authored by Deucе's avatar Deucе :ok_hand_tone4:
Browse files

More fixins to get error message.

parent 4f005d1f
No related branches found
No related tags found
No related merge requests found
......@@ -79,14 +79,14 @@ function run_tests(location, obj)
chdir(js.exec_dir);
if (result instanceof Error) {
tfailed = true;
fail_msg = e.toString();
fail_msg = result.toString();
log("Caught: "+result);
}
}
catch(e) {
tfailed = true;
fail_msg = e.toString();
log("Caught: "+e);
log("Caught: "+fail_msg);
}
if (tfailed) {
stdout.writeln("FAILED!");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment