File: disable-tests-requiring-nightly.patch

package info (click to toggle)
rust-syn 2.0.105-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,552 kB
  • sloc: makefile: 2
file content (22 lines) | stat: -rw-r--r-- 508 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
diff --git a/tests/test_lit.rs b/tests/test_lit.rs
index f2367b4..3e88aa5 100644
--- a/tests/test_lit.rs
+++ b/tests/test_lit.rs
@@ -106,7 +106,7 @@ fn byte_strings() {
     test_byte_string("br##\"...\"##q", b"...");
 }
 
-#[test]
+/*#[test]
 fn c_strings() {
     #[track_caller]
     fn test_c_string(s: &str, value: &CStr) {
@@ -143,7 +143,7 @@ fn c_strings() {
         r#"  c"hello\x80我叫\u{1F980}"  "#, // from the RFC
         c"hello\x80我叫\u{1F980}",
     );
-}
+}*/
 
 #[test]
 fn bytes() {