Split up the unit tests crate

This commit is contained in:
Prabhjyot Singh Sodhi 2015-04-16 06:02:11 +05:30 committed by Simon Sapin
parent fe61cdc95d
commit 7b9c9e1453
8 changed files with 135 additions and 51 deletions

View file

@ -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',