Bug 1121263 - Increase tab process leak threshold on OSX to paper over intermittent leak. r=jmaher

This commit is contained in:
Andrew McCreight 2015-01-14 10:06:46 -08:00
Родитель d3849c267a
Коммит 3c93da871a
1 изменённых файлов: 4 добавлений и 0 удалений

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

@ -666,6 +666,10 @@ class MochitestOptions(optparse.OptionParser):
if mozinfo.isWin:
options.ignoreMissingLeaks.append("tab")
# Bug 1121539 - OSX-only intermittent tab process leak in test_ipc.html
if mozinfo.isMac:
options.leakThresholds["tab"] = 50000
return options