Bug 1326456: Re-enable leak checks on OS-X. r?jmaher draft
authorKris Maglione <maglione.k@gmail.com>
Thu, 05 Jan 2017 14:53:55 -0800
changeset 456596 59d99d3257be7260ba00a4982ff905c649e1fc13
parent 456595 b4aeb5aab22a9ddb02d162d2692450248c73a7f5
child 541281 95feeb0b4a334a4b1ce88fcaf12112f36f232ffc
push id40559
push usermaglione.k@gmail.com
push dateThu, 05 Jan 2017 23:58:59 +0000
reviewersjmaher
bugs1326456
milestone53.0a1
Bug 1326456: Re-enable leak checks on OS-X. r?jmaher MozReview-Commit-ID: 18a18QFaiEC
testing/mochitest/runtests.py
--- a/testing/mochitest/runtests.py
+++ b/testing/mochitest/runtests.py
@@ -2211,17 +2211,16 @@ toolbar#nav-bar {
             # 1325148, but it couldn't land until all the regressions were also fixed or
             # backed out. Rather than waiting and risking new regressions, in the meantime
             # this code will selectively disable leak checking on flavors/directories where
             # known regressions exist. At least this way we can prevent further damage while
             # they get fixed.
 
             info = mozinfo.info
             skip_leak_conditions = [
-                (info['debug'] and options.flavor == 'plain' and d.startswith('toolkit/components/extensions/test/mochitest') and info['os'] == 'mac', 'bug 1326456'),  # noqa
                 (info['debug'] and options.flavor == 'plain' and d == 'dom/animation/test/css-animations', 'bug 1325277'),  # noqa
                 (info['debug'] and options.flavor == 'plain' and d == 'dom/tests/mochitest/gamepad' and info['os'] == 'win', 'bug 1324592'),  # noqa
                 (info['debug'] and options.flavor == 'plain' and d == 'toolkit/components/prompts/test' and info['os'] == 'mac', 'bug 1325275'),  # noqa
                 (info['debug'] and options.flavor == 'plain' and d == 'tests/dom/xhr/tests', 'bug 1325438'),  # noqa
             ]
 
             for condition, reason in skip_leak_conditions:
                 if condition: