aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNathan Climer <nclimer@gmail.com>2014-12-01 16:18:32 -0500
committerNathan Climer <nclimer@gmail.com>2014-12-01 16:49:04 -0500
commit2dc0b8973d10533000663eb122c8e3f00312e3d3 (patch)
tree6f7add80f682d322c74c76bc54ac08f572c60a53
parent9afdce4405f0f5998c81eae83bbb527d0e95ec8e (diff)
downloadservo-2dc0b8973d10533000663eb122c8e3f00312e3d3.tar.gz
servo-2dc0b8973d10533000663eb122c8e3f00312e3d3.zip
Fixed test filter
-rw-r--r--python/servo/testing_commands.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/servo/testing_commands.py b/python/servo/testing_commands.py
index 0a944eb2795..80893e102f5 100644
--- a/python/servo/testing_commands.py
+++ b/python/servo/testing_commands.py
@@ -105,7 +105,7 @@ class MachCommands(CommandBase):
def cargo_test(component):
return 0 != subprocess.call(
- ["cargo", "test", "-p", component], env=self.build_env())
+ ["cargo", "test", "-p", component] + test_name, env=self.build_env())
for component in os.listdir("components"):
ret = ret or cargo_test(component)