Bug 1523303 - Align mozharness suite names with the ones in 'moztest.resolve', r=gbrown

This officially makes 'moztest.resolve' the source of truth when it comes to
suite names. It aligns that file with the names used in both the
desktop_unittest and android_emulator_unittest scripts.

Differential Revision: https://phabricator.services.mozilla.com/D27555
This commit is contained in:
Andrew Halberstadt
2019-04-22 22:32:34 +00:00
parent bae1df96b7
commit 03bc4efb44
17 changed files with 117 additions and 169 deletions

View File

@@ -350,7 +350,7 @@ class Test(MachCommandBase):
buckets.setdefault(key, []).append(test)
for (flavor, subsuite), tests in sorted(buckets.items()):
m = get_suite_definition(flavor, subsuite)
_, m = get_suite_definition(flavor, subsuite)
if 'mach_command' not in m:
substr = '-{}'.format(subsuite) if subsuite else ''
print(UNKNOWN_FLAVOR % (flavor, substr))