From 1fc05dd7e69c7c6b51713ff9e1a047d51de22c0a Mon Sep 17 00:00:00 2001 From: Aravind Gollakota Date: Sun, 17 Jul 2016 19:27:08 -0700 Subject: [PATCH] mach: Don't bail out early when unable to find the right suite for a test --- 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 10e79bf1aa0..b4c045d4a70 100644 --- a/python/servo/testing_commands.py +++ b/python/servo/testing_commands.py @@ -354,7 +354,7 @@ class MachCommands(CommandBase): all_handled = True for test_path in requested_paths: suite = self.suite_for_path(test_path) - if correct_suite != suite: + if suite is not None and correct_suite != suite: all_handled = False print("Warning: %s is not a %s test. Delegating to test-%s." % (test_path, correct_suite, suite)) if all_handled: