Bug 1325438 - Remove leak checking whitelist for tests/dom/xhr/tests. r=jmaher draft
authorAndrew McCreight <continuation@gmail.com>
Fri, 06 Jan 2017 13:15:53 -0800
changeset 457209 3fb6694b75ec1a97793bc50a2258120b1ec8e50e
parent 457208 1b84b6c7f7c5de3a34ce7d49922db1a9d70eb824
child 541420 c7fef48a73fa44471d1a58575628474781a7c86a
push id40708
push userbmo:continuation@gmail.com
push dateSat, 07 Jan 2017 00:41:10 +0000
reviewersjmaher
bugs1325438
milestone53.0a1
Bug 1325438 - Remove leak checking whitelist for tests/dom/xhr/tests. r=jmaher MozReview-Commit-ID: 48elhM564zJ
testing/mochitest/runtests.py
--- a/testing/mochitest/runtests.py
+++ b/testing/mochitest/runtests.py
@@ -2214,17 +2214,16 @@ toolbar#nav-bar {
             # 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/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
             ]
 
             self.disable_leak_checking = False
 
             # END LEAKCHECK HACK
 
             tests_in_dir = [t for t in testsToRun if os.path.dirname(t) == d]