mirror of
https://github.com/servo/servo.git
synced 2025-07-22 23:03:42 +01:00
stylo: Fix and ensure alignment of restyle hints. Test it on Travis.
Turns out eRestyle_LaterSiblings was not really matching, sigh...
This commit is contained in:
parent
6d67525172
commit
27b2bad256
5 changed files with 58 additions and 1 deletions
|
@ -158,6 +158,17 @@ class MachCommands(CommandBase):
|
|||
return suite
|
||||
return None
|
||||
|
||||
@Command('test-geckolib',
|
||||
description='Test geckolib sanity checks',
|
||||
category='testing')
|
||||
def test_geckolib(self):
|
||||
self.ensure_bootstrapped()
|
||||
|
||||
env = self.build_env()
|
||||
env["RUST_BACKTRACE"] = "1"
|
||||
|
||||
return call(["cargo", "test"], env=env, cwd=path.join("ports", "geckolib"))
|
||||
|
||||
@Command('test-unit',
|
||||
description='Run unit tests',
|
||||
category='testing')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue