Bug 1083897, part 2 - Don't require leak logs for tab processes on Windows. r=jmaher

This commit is contained in:
Andrew McCreight 2015-01-13 12:32:35 -08:00
parent 5bbe05d835
commit ae773fa964

View File

@ -662,6 +662,10 @@ class MochitestOptions(optparse.OptionParser):
# Bug 1065098 - The geckomediaplugin process fails to produce a leak log for some reason.
options.ignoreMissingLeaks = ["geckomediaplugin"]
# 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")
return options