зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1274741
- Skip the Fetch nestedWorkerTest on Windows for causing frequent WinXP timeouts in other DOM mochitests. r=bkelly
--HG-- extra : rebase_source : a91083d320543e7beb4abaf57559850ed47dad66
This commit is contained in:
Родитель
a80b00abf4
Коммит
4ed824d971
|
@ -141,7 +141,9 @@ function testScript(script) {
|
|||
return workerTest();
|
||||
})
|
||||
.then(function() {
|
||||
return nestedWorkerTest();
|
||||
// XXX Bug 1281212 - This makes other, unrelated test suites fail, primarily on WinXP.
|
||||
let isWin = navigator.platform.indexOf("Win") == 0;
|
||||
return isWin ? undefined : nestedWorkerTest();
|
||||
})
|
||||
.then(function() {
|
||||
return serviceWorkerTest();
|
||||
|
|
Загрузка…
Ссылка в новой задаче