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:
Emilio Cobos Álvarez 2016-08-03 00:36:45 -07:00
parent 6d67525172
commit 27b2bad256
No known key found for this signature in database
GPG key ID: 056B727BB9C1027C
5 changed files with 58 additions and 1 deletions

View file

@ -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')