Bug 1019244 - Do not throw on exception handling during xpcshell tests. r=ted

This commit is contained in:
Alexandre Poirot 2014-06-02 15:09:00 -04:00
parent 91887116d3
commit 045226d2eb

View File

@ -519,7 +519,7 @@ function _load_files(aFiles) {
{_message: "TEST-UNEXPECTED-FAIL | (xpcshell/head.js) | Source file " + element + " contains an error",
diagnostic: _exception_message(e),
source_file: element,
stack: _format_exception_stack(e.stack)});
stack: e.stack ? _format_exception_stack(e.stack) : null});
}
}