Back out bug 1083897 a=backout

This commit is contained in:
Bill McCloskey
2015-04-14 14:09:44 -07:00
parent 068cc73ee7
commit b1d85e7abb

View File

@@ -692,12 +692,7 @@ class MochitestOptions(optparse.OptionParser):
# Bug 1065098 - The geckomediaplugin process fails to produce a leak # Bug 1065098 - The geckomediaplugin process fails to produce a leak
# log for some reason. # log for some reason.
options.ignoreMissingLeaks = ["geckomediaplugin"] options.ignoreMissingLeaks = ["geckomediaplugin", "tab"]
# Bug 1091917 - We exit early in tab processes on Windows, so we don't
# get leak logs yet.
if mozinfo.isWin:
options.ignoreMissingLeaks.append("tab")
# Bug 1121539 - OSX-only intermittent tab process leak in test_ipc.html # Bug 1121539 - OSX-only intermittent tab process leak in test_ipc.html
if mozinfo.isMac: if mozinfo.isMac:
@@ -913,7 +908,7 @@ class B2GOptions(MochitestOptions):
options.ignoreMissingLeaks.append("default") options.ignoreMissingLeaks.append("default")
# Bug 1070068 - Leak logging does not work for tab processes on B2G. # Bug 1070068 - Leak logging does not work for tab processes on B2G.
options.ignoreMissingLeaks.append("tab") assert "tab" in options.ignoreMissingLeaks, "Ignore failures for tab processes on B2G"
return options return options