mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-02 10:00:54 +00:00
Merge mozilla-central to mozilla-inbound
This commit is contained in:
commit
c5ef5abdc0
@ -644,6 +644,29 @@ function getImplementation() {
|
||||
return builder.getImplementation();
|
||||
}
|
||||
|
||||
//sayrer override the SimpleTest logger
|
||||
SimpleTest._logResult = function(test, passString, failString) {
|
||||
var msg = test.result ? passString : failString;
|
||||
msg += " | " + test.name;
|
||||
if (test.result) {
|
||||
if (test.todo)
|
||||
parentRunner.logger.error(msg)
|
||||
else
|
||||
parentRunner.logger.log(msg);
|
||||
} else {
|
||||
msg += " | " + test.diag;
|
||||
if (test.todo) {
|
||||
parentRunner.logger.log(msg)
|
||||
} else {
|
||||
if (todoTests[docName]) {
|
||||
parentRunner.logger.log("expected error in todo testcase | " + test.name);
|
||||
} else {
|
||||
parentRunner.logger.error(msg);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function testFails (test) {
|
||||
if (!test.result) {
|
||||
test.todo = true;
|
||||
|
@ -648,6 +648,29 @@ function getImplementation() {
|
||||
return builder.getImplementation();
|
||||
}
|
||||
|
||||
//sayrer override the SimpleTest logger
|
||||
SimpleTest._logResult = function(test, passString, failString) {
|
||||
var msg = test.result ? passString : failString;
|
||||
msg += " | " + test.name;
|
||||
if (test.result) {
|
||||
if (test.todo)
|
||||
parentRunner.logger.error(msg)
|
||||
else
|
||||
parentRunner.logger.log(msg);
|
||||
} else {
|
||||
msg += " | " + test.diag;
|
||||
if (test.todo) {
|
||||
parentRunner.logger.log(msg)
|
||||
} else {
|
||||
if (todoTests[docName]) {
|
||||
parentRunner.logger.log("expected error in todo testcase | " + test.name);
|
||||
} else {
|
||||
parentRunner.logger.error(msg);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
window.doc = window;
|
||||
SimpleTest.waitForExplicitFinish();
|
||||
addLoadEvent(function(){ setUpPage(); });
|
||||
|
@ -648,6 +648,29 @@ function getImplementation() {
|
||||
return builder.getImplementation();
|
||||
}
|
||||
|
||||
//sayrer override the SimpleTest logger
|
||||
SimpleTest._logResult = function(test, passString, failString) {
|
||||
var msg = test.result ? passString : failString;
|
||||
msg += " | " + test.name;
|
||||
if (test.result) {
|
||||
if (test.todo)
|
||||
parentRunner.logger.error(msg)
|
||||
else
|
||||
parentRunner.logger.log(msg);
|
||||
} else {
|
||||
msg += " | " + test.diag;
|
||||
if (test.todo) {
|
||||
parentRunner.logger.log(msg)
|
||||
} else {
|
||||
// if (todoTests[docName]) {
|
||||
// parentRunner.logger.log("expected error in todo testcase | " + test.name);
|
||||
//} else {
|
||||
parentRunner.logger.error(msg);
|
||||
//}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
window.doc = window;
|
||||
SimpleTest.waitForExplicitFinish();
|
||||
addLoadEvent(function(){ setUpPage(); });
|
||||
|
Loading…
Reference in New Issue
Block a user