mach test-unit: also pass extra arguments to style_tests harness

This commit is contained in:
Simon Sapin 2017-01-09 19:32:52 +01:00
parent b5d9210f16
commit 93f66ab0cc

View file

@ -276,6 +276,11 @@ class MachCommands(CommandBase):
args += ["%s" % ' '.join(features + ["testing"])]
else:
args += ["testing"]
args += test_patterns
if nocapture:
args += ["--", "--nocapture"]
return call(args, env=env, cwd=self.servo_crate())
@Command('test-stylo',