diff options
Diffstat (limited to 'python/servo/testing_commands.py')
-rw-r--r-- | python/servo/testing_commands.py | 4 |
1 files changed, 3 insertions, 1 deletions
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', |