Bug 1232204 - Disable checks of number of buttons in browser_ProcessHangNotifications.js since they fail to properly identify when it is a mozilla-aurora on-push build being tested

This commit is contained in:
Phil Ringnalda 2015-12-14 18:52:36 -08:00
parent d18eab59cd
commit c6238c03dc

View File

@ -102,7 +102,8 @@ add_task(function* terminateScriptTest() {
let notification = yield promise;
let buttons = notification.currentNotification.getElementsByTagName("button");
is(buttons.length, buttonCount, "proper number of buttons");
// Fails on aurora on-push builds, bug 1232204
// is(buttons.length, buttonCount, "proper number of buttons");
// Click the "Stop It" button, we should get a terminate script callback
gTestHangReport.hangType = gTestHangReport.SLOW_SCRIPT;
@ -122,7 +123,8 @@ add_task(function* waitForScriptTest() {
let notification = yield promise;
let buttons = notification.currentNotification.getElementsByTagName("button");
is(buttons.length, buttonCount, "proper number of buttons");
// Fails on aurora on-push builds, bug 1232204
// is(buttons.length, buttonCount, "proper number of buttons");
yield pushPrefs(["browser.hangNotification.waitPeriod", 1000],
["browser.hangNotification.expiration", 2000]);
@ -175,7 +177,8 @@ add_task(function* terminatePluginTest() {
let notification = yield promise;
let buttons = notification.currentNotification.getElementsByTagName("button");
is(buttons.length, buttonCount, "proper number of buttons");
// Fails on aurora on-push builds, bug 1232204
// is(buttons.length, buttonCount, "proper number of buttons");
// Click the "Stop It" button, we should get a terminate script callback
gTestHangReport.hangType = gTestHangReport.PLUGIN_HANG;