diff options
author | tigercosmos <phy.tiger@gmail.com> | 2018-06-15 09:54:30 -0700 |
---|---|---|
committer | tigercosmos <phy.tiger@gmail.com> | 2018-06-19 12:52:07 -0700 |
commit | 80c41b426626aa90726389bd12944ab189957806 (patch) | |
tree | a7fb5d675cf28716e79ed6e6d02709fa2db9ad79 /python/servo | |
parent | 5c4f54c4035d316eba55eda0186e2f2e010042d5 (diff) | |
download | servo-80c41b426626aa90726389bd12944ab189957806.tar.gz servo-80c41b426626aa90726389bd12944ab189957806.zip |
Check WPT manifest when running test-tidy
Diffstat (limited to 'python/servo')
-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', |