aboutsummaryrefslogtreecommitdiffstats
path: root/python/servo/testing_commands.py
diff options
context:
space:
mode:
authorSimon Sapin <simon.sapin@exyr.org>2017-01-09 19:32:52 +0100
committerSimon Sapin <simon.sapin@exyr.org>2017-01-09 19:35:00 +0100
commit93f66ab0cc68a1178b55d563bd2f81ac512bfb49 (patch)
treee320f6fffb312a89ca544d564cc760e8650198fa /python/servo/testing_commands.py
parentb5d9210f167ccb2c372ca6d3cf889488cbc450a9 (diff)
downloadservo-93f66ab0cc68a1178b55d563bd2f81ac512bfb49.tar.gz
servo-93f66ab0cc68a1178b55d563bd2f81ac512bfb49.zip
mach test-unit: also pass extra arguments to style_tests harness
Diffstat (limited to 'python/servo/testing_commands.py')
-rw-r--r--python/servo/testing_commands.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/python/servo/testing_commands.py b/python/servo/testing_commands.py
index 1f03addfc6a..04b0542a079 100644
--- a/python/servo/testing_commands.py
+++ b/python/servo/testing_commands.py
@@ -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',