Bug 469444 - steps.py : MozillaA11YTest misses __init__() and evaluateCommand(); (Av1) Explicitly set default leakThreshold to 0 in runtests.py.in; r=ted.mielczarek

This commit is contained in:
Serge Gautherie 2008-12-13 22:02:18 +01:00
parent f8412fdedc
commit 5200089bae

View File

@ -461,6 +461,9 @@ def maybeForceLeakThreshold(options):
# We still leak a nondeterministic amount running browser-chrome tests.
# But we are close to 0 (bug), so start to prevent/detect regressions. (Bug 460548)
options.leakThreshold = 74000
elif options.a11y:
# We don't leak running the --a11y tests.
options.leakThreshold = 0
else:
# Normal Mochitests: no leaks.
options.leakThreshold = 0