From 80c41b426626aa90726389bd12944ab189957806 Mon Sep 17 00:00:00 2001 From: tigercosmos Date: Fri, 15 Jun 2018 09:54:30 -0700 Subject: Check WPT manifest when running test-tidy --- python/servo/testing_commands.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'python/servo/testing_commands.py') diff --git a/python/servo/testing_commands.py b/python/servo/testing_commands.py index b0d07f0821b..545fa19f3b0 100644 --- a/python/servo/testing_commands.py +++ b/python/servo/testing_commands.py @@ -319,7 +319,9 @@ class MachCommands(CommandBase): if self_test: return test_tidy.do_tests() else: - return tidy.scan(not all_files, not no_progress, stylo=stylo) + manifest_dirty = run_update(self.context.topdir, check_clean=True) + tidy_failed = tidy.scan(not all_files, not no_progress, stylo=stylo) + return tidy_failed or manifest_dirty @Command('test-webidl', description='Run the WebIDL parser tests', -- cgit v1.2.3