aboutsummaryrefslogtreecommitdiffstats
path: root/python/tidy/servo_tidy_tests/multiline_string.rs
diff options
context:
space:
mode:
authorbors-servo <lbergstrom+bors@mozilla.com>2017-09-21 23:38:29 -0500
committerGitHub <noreply@github.com>2017-09-21 23:38:29 -0500
commita8a25dac5226a12916c8fe17155d1dbb3b6cb565 (patch)
tree09e8d8c037f9eee79ded15481850dfc6d77b7171 /python/tidy/servo_tidy_tests/multiline_string.rs
parentbe9c8ec07a0ca745adf1b412d32b3b32adec122c (diff)
parentc9dafda03a4a143f4626726df7562077a7cdd64f (diff)
downloadservo-a8a25dac5226a12916c8fe17155d1dbb3b6cb565.tar.gz
servo-a8a25dac5226a12916c8fe17155d1dbb3b6cb565.zip
Auto merge of #18553 - mdboom:tidy-support-multiline-strings, r=wafflespeanut
Make tidy aware of Rust multiline strings <!-- Please describe your changes on the following line: --> This makes the internal tidy script properly ignore the contents of Rust multiline strings. --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data: --> - [X] `./mach build -d` does not report any errors - [X] `./mach test-tidy` does not report any errors - [X] These changes fix #18551 (github issue number if applicable). <!-- Either: --> - [X] There are tests for these changes OR - [ ] These changes do not require tests because _____ <!-- Also, please make sure that "Allow edits from maintainers" checkbox is checked, so that we can help you if you get stuck somewhere along the way.--> <!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. --> <!-- 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/18553) <!-- Reviewable:end -->
Diffstat (limited to 'python/tidy/servo_tidy_tests/multiline_string.rs')
-rw-r--r--python/tidy/servo_tidy_tests/multiline_string.rs28
1 files changed, 28 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/");
+}