backing out 5ee85f7 due to test harness failures

This commit is contained in:
Vladimir Vukicevic 2009-11-18 11:13:29 -08:00
Родитель 44267422bf
Коммит f1e889e9d4
4 изменённых файлов: 6 добавлений и 25 удалений

Просмотреть файл

@ -514,10 +514,6 @@ function testListing(metadata, response)
true);
dumpn("count: " + count);
var tests = jsonArrayOfTestFiles(links);
var runtests = "Run Tests";
if (metadata.queryString.indexOf("autorun=1") != -1) {
runtests = "Stop Tests";
}
response.write(
HTML(
HEAD(
@ -540,7 +536,7 @@ function testListing(metadata, response)
),
BODY(
DIV({class: "container"},
H2("--> ", A({href: "#", id: "runtests"}, runtests), " <--"),
H2("--> ", A({href: "#", id: "runtests"}, "Run Tests"), " <--"),
P({style: "float: right;"},
SMALL(
"Based on the ",
@ -550,8 +546,6 @@ function testListing(metadata, response)
),
DIV({class: "status"},
H1({id: "indicator"}, "Status"),
H2({id: "file"}, "File: ",
SPAN({id: "progress"}, "0 / " + count + " (0%)")),
H2({id: "pass"}, "Passed: ", SPAN({id: "pass-count"},"0")),
H2({id: "fail"}, "Failed: ", SPAN({id: "fail-count"},"0")),
H2({id: "fail"}, "Todo: ", SPAN({id: "todo-count"},"0"))

Просмотреть файл

@ -91,7 +91,7 @@ div#current-test {
margin: 0;
}
#pass, #fail, #file {
#pass, #fail {
margin: 0;
padding: .5em;
}

Просмотреть файл

@ -11,7 +11,6 @@ TestRunner.logEnabled = false;
TestRunner._currentTest = 0;
TestRunner.currentTestURL = "";
TestRunner._urls = [];
TestRunner._title = "";
TestRunner.timeout = 5 * 60 * 1000; // 5 minutes.
TestRunner.maxTimeouts = 4; // halt testing after too many timeouts
@ -96,7 +95,7 @@ TestRunner._makeIframe = function (url, retry) {
TestRunner.logger.log("Error: Unable to restore focus, expect failures and timeouts.");
}
}
window.scrollTo(0, 0);
window.scrollTo(0, $('indicator').offsetTop);
iframe.src = url;
iframe.name = url;
iframe.width = "500";
@ -113,7 +112,6 @@ TestRunner.runTests = function (/*url...*/) {
if (TestRunner.logEnabled)
TestRunner.logger.log("SimpleTest START");
TestRunner._title = document.title;
TestRunner._urls = flattenArguments(arguments);
$('testframe').src="";
TestRunner._checkForHangs();
@ -171,12 +169,6 @@ TestRunner.runNextTest = function() {
if (TestRunner.onComplete)
TestRunner.onComplete();
}
var cur = TestRunner._currentTest;
var total = TestRunner._urls.length;
var progress = cur + " / " + total + " (" +
Math.floor(100 * (cur / total)) + "%)";
document.title = progress + " - " + TestRunner._title;
$("progress").innerHTML = progress;
};
/**

Просмотреть файл

@ -138,16 +138,11 @@ RunSet.runall = function(e) {
}
RunSet.reloadAndRunAll = function(e) {
e.preventDefault();
//window.location.hash = "";
var addParam = "";
if (params.autorun) {
if (!TestRunner._haltTests) {
TestRunner._haltTests = true;
$('runtests').innerHTML = "Restart Tests";
}
else {
// already clicked stop, so just reload
window.location.href = window.location.href;
}
window.location.search += "";
window.location.href = window.location.href;
} else if (window.location.search) {
window.location.href += "&autorun=1";
} else {