зеркало из https://github.com/mozilla/pjs.git
Bug 416911 - per-test timeout in talos
more information from the pageloader p=anodelman r=rcampbell
This commit is contained in:
Родитель
cf6c796422
Коммит
df1b976f7a
|
@ -247,9 +247,16 @@ function plNextPage() {
|
||||||
|
|
||||||
function plRecordTime(time) {
|
function plRecordTime(time) {
|
||||||
var pageName = pages[pageIndex].url.spec;
|
var pageName = pages[pageIndex].url.spec;
|
||||||
|
var i = pageIndex
|
||||||
|
if (i < pages.length-1) {
|
||||||
|
i++;
|
||||||
|
} else {
|
||||||
|
i = 0;
|
||||||
|
}
|
||||||
|
var nextName = pages[i].url.spec;
|
||||||
report.recordTime(pageIndex, time);
|
report.recordTime(pageIndex, time);
|
||||||
if (noisy) {
|
if (noisy) {
|
||||||
dumpLine("Cycle " + (cycle+1) + ": loaded " + pageName);
|
dumpLine("Cycle " + (cycle+1) + ": loaded " + pageName + " (next: " + nextName + ")");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Загрузка…
Ссылка в новой задаче