From 5f15eb5fbfb7a8649132cc8b3a07314389836714 Mon Sep 17 00:00:00 2001 From: Ms2ger Date: Wed, 11 Mar 2015 11:08:57 +0100 Subject: Upgrade rustc to d3c49d2140fc65e8bb7d7cf25bfe74dda6ce5ecf/rustc-1.0.0-dev. --- python/servo/testing_commands.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'python/servo/testing_commands.py') diff --git a/python/servo/testing_commands.py b/python/servo/testing_commands.py index ac70aee373d..2bd4fcdad7f 100644 --- a/python/servo/testing_commands.py +++ b/python/servo/testing_commands.py @@ -36,12 +36,12 @@ class MachCommands(CommandBase): def find_test(self, prefix): target_contents = os.listdir(path.join( - self.context.topdir, "components", "servo", "target")) + self.context.topdir, "components", "servo", "target", "debug")) for filename in target_contents: if filename.startswith(prefix + "-"): filepath = path.join( self.context.topdir, "components", "servo", - "target", filename) + "target", "debug", filename) if path.isfile(filepath) and os.access(filepath, os.X_OK): return filepath -- cgit v1.2.3