aboutsummaryrefslogtreecommitdiffstats
path: root/python/servo/testing_commands.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/servo/testing_commands.py')
-rw-r--r--python/servo/testing_commands.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/python/servo/testing_commands.py b/python/servo/testing_commands.py
index b93d3689700..62f4f213fbf 100644
--- a/python/servo/testing_commands.py
+++ b/python/servo/testing_commands.py
@@ -110,8 +110,9 @@ class MachCommands(CommandBase):
self.ensure_bootstrapped()
return 0 != subprocess.call(
- ["cargo", "test", "-p", "unit_tests"]
- + test_name, env=self.build_env(), cwd=self.servo_crate())
+ ["cargo", "test", "-p", "gfx_tests", "net_tests", "script_tests",
+ "style_tests", "util_tests"] + test_name,
+ env=self.build_env(), cwd=self.servo_crate())
@Command('test-ref',
description='Run the reference tests',