diff options
author | Prabhjyot Singh Sodhi <prabhjyotsingh95@gmail.com> | 2015-04-16 06:02:11 +0530 |
---|---|---|
committer | Simon Sapin <simon.sapin@exyr.org> | 2015-04-21 20:05:53 +0200 |
commit | 7b9c9e14531b811da0f4dbf3596100e6fbb792d7 (patch) | |
tree | 02c89457d43ec157fe302a955b3d9bca066f55e1 /python/servo/testing_commands.py | |
parent | fe61cdc95da968c21bc15d01cdb16e470f67c492 (diff) | |
download | servo-7b9c9e14531b811da0f4dbf3596100e6fbb792d7.tar.gz servo-7b9c9e14531b811da0f4dbf3596100e6fbb792d7.zip |
Split up the unit tests crate
Diffstat (limited to 'python/servo/testing_commands.py')
-rw-r--r-- | python/servo/testing_commands.py | 5 |
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', |