mirror of
https://github.com/servo/servo.git
synced 2025-07-22 23:03:42 +01:00
Make tidy aware of Rust multiline strings
As a result of tighter and more correct handling of character literals, this now catches a few kinds of syntax involving lifetimes that were previously missed, so those have been updated.
This commit is contained in:
parent
5c797d1943
commit
c9dafda03a
6 changed files with 55 additions and 15 deletions
|
@ -266,6 +266,11 @@ class CheckTidiness(unittest.TestCase):
|
|||
lst = list(file_list)
|
||||
self.assertEqual([os.path.join(base_path, 'whee', 'test.rs')], lst)
|
||||
|
||||
def test_multiline_string(self):
|
||||
errors = tidy.collect_errors_for_files(iterFile('multiline_string.rs'), [], [tidy.check_rust], print_text=True)
|
||||
self.assertNoMoreErrors(errors)
|
||||
|
||||
|
||||
def do_tests():
|
||||
suite = unittest.TestLoader().loadTestsFromTestCase(CheckTidiness)
|
||||
return 0 if unittest.TextTestRunner(verbosity=2).run(suite).wasSuccessful() else 1
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue