зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1052224 - Disable leak checking in content processes. r=jmaher
This commit is contained in:
Родитель
b7e0b48dc5
Коммит
c9effe53d4
|
@ -354,8 +354,13 @@ def processSingleLeakFile(leakLogFileName, processType, leakThreshold):
|
|||
|
||||
# totalBytesLeaked was seen and is non-zero.
|
||||
if totalBytesLeaked > leakThreshold:
|
||||
# Fail the run if we're over the threshold (which defaults to 0)
|
||||
prefix = "TEST-UNEXPECTED-FAIL"
|
||||
if processType and processType == "tab":
|
||||
# For now, ignore tab process leaks. See bug 1051230.
|
||||
log.info("WARNING | leakcheck | ignoring leaks in tab process")
|
||||
prefix = "WARNING"
|
||||
else:
|
||||
# Fail the run if we're over the threshold (which defaults to 0)
|
||||
prefix = "TEST-UNEXPECTED-FAIL"
|
||||
else:
|
||||
prefix = "WARNING"
|
||||
# Create a comma delimited string of the first N leaked objects found,
|
||||
|
|
Загрузка…
Ссылка в новой задаче