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
parent 77ce2ef512
commit 940e09eaa4

View File

@ -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.
}