diff options
author | bors-servo <lbergstrom+bors@mozilla.com> | 2016-09-24 00:36:28 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-09-24 00:36:28 -0500 |
commit | 28bce69d248995cc6ec83a2b4ada9cf17a888bb5 (patch) | |
tree | 20e348d8c601ae377d1efbc46fb6ecb666da1073 /python/servo | |
parent | 2ba804e6db52637fbe23fbecfd0e65b4db1a49e2 (diff) | |
parent | c5a7bb2569ce8757bc271d3b54968a46e6a43244 (diff) | |
download | servo-28bce69d248995cc6ec83a2b4ada9cf17a888bb5.tar.gz servo-28bce69d248995cc6ec83a2b4ada9cf17a888bb5.zip |
Auto merge of #13386 - Manishearth:style-testing, r=emilio
Run style tests with all properties included
This turns on all properties (including stylo-only ones) when the style unit tests are compiled. This lets us test the parsing of gecko-only properties.
These tests can't go in tests/stylo since this introduces dependencies on `Gecko_*` symbols. This method lets us test parsing and serialization of geckolib properties compiled in Servo mode (e.g. using Servo atoms, Servo URLs)
r? @emilio
<!-- Reviewable:start -->
---
This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/13386)
<!-- Reviewable:end -->
Diffstat (limited to 'python/servo')
-rw-r--r-- | python/servo/testing_commands.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/servo/testing_commands.py b/python/servo/testing_commands.py index a3206b745f3..38248f9aae3 100644 --- a/python/servo/testing_commands.py +++ b/python/servo/testing_commands.py @@ -208,7 +208,7 @@ class MachCommands(CommandBase): if not packages: packages = set(os.listdir(path.join(self.context.topdir, "tests", "unit"))) - packages.remove('stylo') + packages.discard('stylo') args = ["cargo", "test"] for crate in packages: |