Bug 883858 followup - disabled tests are passed to the JS test runner which reports them as skipped. r=jmaher

This commit is contained in:
Mark Hammond 2013-11-18 15:09:01 +11:00
parent 15efcbad48
commit f5f883311c

View File

@ -353,7 +353,7 @@ class MochitestUtilsMixin(object):
manifest = TestManifest(strict=False)
manifest.read(options.manifestFile)
# Bug 883858 - return all tests including disabled tests
tests = manifest.active_tests(disabled=False, **mozinfo.info)
tests = manifest.active_tests(disabled=True, **mozinfo.info)
paths = []
for test in tests:
tp = test['path'].split(self.getTestRoot(options), 1)[1].strip('/')