Bug 1421799 - [mochitest] Stop printing NOW RUNNING messages r=gbrown

The suite name is no part of the suite_start message and can be printed via a
mozlog formatter. We shouldn't be printing this directly to stdout from |mach
mochitest|.

MozReview-Commit-ID: TOuqfEF14

--HG--
extra : rebase_source : ebcf6e37b77a0ca1e6da242df9066d4b41286d5c
This commit is contained in:
Andrew Halberstadt 2017-12-06 17:32:17 -05:00
parent 0b44c941df
commit 5a7959922c

View File

@ -68,13 +68,6 @@ test path(s):
Please check spelling and make sure the named tests exist.
'''.lstrip()
NOW_RUNNING = '''
######
### Now running mochitest-{}.
######
'''
SUPPORTED_APPS = ['firefox', 'android']
parser = None
@ -409,10 +402,6 @@ class MachCommands(MachCommandBase):
overall = None
for (flavor, subsuite), tests in sorted(suites.items()):
fobj = ALL_FLAVORS[flavor]
msg = fobj['aliases'][0]
if subsuite:
msg = '{} with subsuite {}'.format(msg, subsuite)
print(NOW_RUNNING.format(msg))
harness_args = kwargs.copy()
harness_args['subsuite'] = subsuite