aboutsummaryrefslogtreecommitdiffstats
path: root/python/tidy/servo_tidy_tests
diff options
context:
space:
mode:
authorMichael Droettboom <mdboom@gmail.com>2017-09-18 16:08:55 -0400
committerMichael Droettboom <mdboom@gmail.com>2017-09-21 17:17:47 -0400
commitc9dafda03a4a143f4626726df7562077a7cdd64f (patch)
treedbe9ca3bbec26664ba3b93cb5c4e42493fffc024 /python/tidy/servo_tidy_tests
parent5c797d194346d5be3c55da51d82bfcd1031a51f5 (diff)
downloadservo-c9dafda03a4a143f4626726df7562077a7cdd64f.tar.gz
servo-c9dafda03a4a143f4626726df7562077a7cdd64f.zip
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.
Diffstat (limited to 'python/tidy/servo_tidy_tests')
-rw-r--r--python/tidy/servo_tidy_tests/multiline_string.rs28
-rw-r--r--python/tidy/servo_tidy_tests/test_tidy.py5
2 files changed, 33 insertions, 0 deletions
diff --git a/python/tidy/servo_tidy_tests/multiline_string.rs b/python/tidy/servo_tidy_tests/multiline_string.rs
new file mode 100644
index 00000000000..06f7fda7a96
--- /dev/null
+++ b/python/tidy/servo_tidy_tests/multiline_string.rs
@@ -0,0 +1,28 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
+
+
+// This puts a "multi-line string
+// inside of a comment" and then subsequently has a hyphenated-phrase
+
+
+const FOO: &'static str = "Do not confuse 'apostrophes',
+ They can be 'lifetimes' or 'characters'";
+
+
+fn main() {
+ assert!(foo("test
+ foo-bar"));
+
+ assert!(foo("test
+ test2 \"
+ foo-bar"));
+
+ assert!(foo("test
+ test2 \
+ foo-bar"));
+
+ println!("This is a multiline string with a URL, which kinda, \
+ sorta looks like a comment https://github.com/servo/servo/");
+}
diff --git a/python/tidy/servo_tidy_tests/test_tidy.py b/python/tidy/servo_tidy_tests/test_tidy.py
index 73a37cd4612..4631d20ded7 100644
--- a/python/tidy/servo_tidy_tests/test_tidy.py
+++ b/python/tidy/servo_tidy_tests/test_tidy.py
@@ -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