author | Andrew McCreight <continuation@gmail.com> |
Wed, 10 Feb 2016 10:29:20 -0800 | |
changeset 322099 | 9869446ba690f2a36ea93db9a3542e18df438875 |
parent 322098 | 310c2251e62ee2832167247cb0559e2f53579f2c |
child 322100 | e94a21686360a2873132de01b062a01a1d7fce0a |
push id | 1128 |
push user | jlund@mozilla.com |
push date | Wed, 01 Jun 2016 01:31:59 +0000 |
treeherder | mozilla-release@fe0d30de989d [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
reviewers | chmanchester |
bugs | 1091917 |
milestone | 47.0a1 |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
--- a/testing/mochitest/mochitest_options.py +++ b/testing/mochitest/mochitest_options.py @@ -790,21 +790,16 @@ class MochitestArguments(ArgumentContain options.leakThresholds = { "default": options.defaultLeakThreshold, "tab": 10000, # See dependencies of bug 1051230. # GMP rarely gets a log, but when it does, it leaks a little. "geckomediaplugin": 20000, } - # 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") - # XXX We can't normalize test_paths in the non build_obj case here, # because testRoot depends on the flavor, which is determined by the # mach command and therefore not finalized yet. Conversely, test paths # need to be normalized here for the mach case. if options.test_paths and build_obj: # Normalize test paths so they are relative to test root options.test_paths = [build_obj._wrap_path_argument(p).relpath() for p in options.test_paths]