Bug 1087613 - Reduce content process leak threshold to 20KB. r=erahm

This commit is contained in:
Andrew McCreight 2015-01-13 12:32:35 -08:00
Родитель 0f7602f738
Коммит 2b98534c65
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -655,7 +655,7 @@ class MochitestOptions(optparse.OptionParser):
options.leakThresholds = {
"default": options.defaultLeakThreshold,
"tab": 2000000, # See dependencies of bug 1051230.
"tab": 20000, # See dependencies of bug 1051230.
"geckomediaplugin": 20000, # GMP rarely gets a log, but when it does, it leaks a little.
}