Bug 1143222 - Put the DOM Cache tests in sequential mode again until we fix the rest of the intermittent failures; a=RyanVM

This commit is contained in:
Ehsan Akhgari 2015-03-19 17:08:02 -04:00
Родитель b92e929c3e
Коммит 1e0c4573e6
1 изменённых файлов: 2 добавлений и 1 удалений

3
dom/cache/test/mochitest/driver.js поставляемый
Просмотреть файл

@ -81,7 +81,8 @@ function runTests(testFile, order) {
SimpleTest.waitForExplicitFinish();
if (typeof order == "undefined") {
order = "both"; // both by default
order = "sequential"; // sequential by default, see bug 1143222.
// TODO: Make this "both" again.
}
ok(order == "parallel" || order == "sequential" || order == "both",