Properly disable the problematic portions of browser_aboutHome.js for bug 992485, undoing the dumb thing khuey did on a CLOSED TREE

This commit is contained in:
Gavin Sharp 2014-04-10 22:07:45 -04:00
Родитель 96034f777f
Коммит b8b1a79b34
2 изменённых файлов: 5 добавлений и 1 удалений

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

@ -89,7 +89,7 @@ support-files =
[browser_aboutHealthReport.js]
skip-if = os == "linux" # Bug 924307
[browser_aboutHome.js]
skip-if = true # Bug 992485. This should go back to skip-if = e10s.
skip-if = e10s # Bug ?????? - no about:home support yet
[browser_aboutSyncProgress.js]
[browser_addKeywordSearch.js]
[browser_alltabslistener.js]

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

@ -90,11 +90,15 @@ let gTests = [
},
// Disabled on Linux for intermittent issues with FHR, see Bug 945667.
// Disabled always due to bug 992485
{
desc: "Check that performing a search fires a search event and records to " +
"Firefox Health Report.",
setup: function () { },
run: function () {
// Skip this test always for now since it loads google.com and that causes bug 992485
return;
// Skip this test on Linux.
if (navigator.platform.indexOf("Linux") == 0) { return; }