Slightly better handling of exceptions, especially parse errors. Bug 388248, r=gavin

git-svn-id: svn://10.0.0.236/trunk@230015 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
bzbarsky%mit.edu
2007-07-16 00:21:11 +00:00
parent f9664e4ac1
commit 4aeffdcae2

View File

@@ -63,14 +63,14 @@ Tester.prototype = {
var scriptLoader = Cc["@mozilla.org/moz/jssubscript-loader;1"].
getService(Ci.mozIJSSubScriptLoader);
scriptLoader.loadSubScript(this.currentTest.path, this.currentTest.scope);
// Run the test
var exception = null;
try {
scriptLoader.loadSubScript(this.currentTest.path, this.currentTest.scope);
// Run the test
this.currentTest.scope.test();
} catch (ex) {
this.currentTest.tests.push(new testResult(false, "Exception thrown", ex, false));
this.currentTest.scope.done = true;
}
// If the test ran synchronously, move to the next test,