From 2dc0b8973d10533000663eb122c8e3f00312e3d3 Mon Sep 17 00:00:00 2001 From: Nathan Climer Date: Mon, 1 Dec 2014 16:18:32 -0500 Subject: [PATCH] Fixed test filter --- python/servo/testing_commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)