diff options
author | Simon Sapin <simon.sapin@exyr.org> | 2017-01-09 19:32:52 +0100 |
---|---|---|
committer | Simon Sapin <simon.sapin@exyr.org> | 2017-01-09 19:35:00 +0100 |
commit | 93f66ab0cc68a1178b55d563bd2f81ac512bfb49 (patch) | |
tree | e320f6fffb312a89ca544d564cc760e8650198fa /python/servo/testing_commands.py | |
parent | b5d9210f167ccb2c372ca6d3cf889488cbc450a9 (diff) | |
download | servo-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.py | 5 |
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', |