diff options
author | Simon Sapin <simon.sapin@exyr.org> | 2016-04-20 15:42:45 +0200 |
---|---|---|
committer | Simon Sapin <simon.sapin@exyr.org> | 2016-04-20 15:42:45 +0200 |
commit | bf8edd15963a06525dcee9a84ebc635cbc3fc622 (patch) | |
tree | e514b206d4445c527d3e1efd1bb9647291e2307a /python/servo | |
parent | 2d8c17e6003e29b8cdc47bbb0c1e9da3af56039e (diff) | |
download | servo-bf8edd15963a06525dcee9a84ebc635cbc3fc622.tar.gz servo-bf8edd15963a06525dcee9a84ebc635cbc3fc622.zip |
Be sligthly more verbose about css-properties.json in test-unit
Diffstat (limited to 'python/servo')
-rw-r--r-- | python/servo/testing_commands.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/python/servo/testing_commands.py b/python/servo/testing_commands.py index 9e20fab1c79..f0eccee59af 100644 --- a/python/servo/testing_commands.py +++ b/python/servo/testing_commands.py @@ -660,6 +660,7 @@ testing/web-platform/mozilla/tests for Servo-only tests""" % reference_path) def check_css_properties_json(topdir): + print("Testing generation of css-properties.json...") filename = path.join(topdir, "target", "doc", "servo", "css-properties.json") if path.exists(filename): @@ -675,3 +676,4 @@ def check_css_properties_json(topdir): assert len(properties) >= 100 assert "margin-top" in properties assert "margin" in properties + print("OK") |