1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
disable compile-fail tests, they fail with a permission denied error.
in the autopkgtest environment.
Index: bitflags/tests/compile.rs
===================================================================
--- bitflags.orig/tests/compile.rs
+++ bitflags/tests/compile.rs
@@ -7,13 +7,13 @@ use std::{
use walkdir::WalkDir;
-#[test]
-fn fail() {
- prepare_stderr_files("tests/compile-fail").unwrap();
-
- let t = trybuild::TestCases::new();
- t.compile_fail("tests/compile-fail/**/*.rs");
-}
+//#[test]
+//fn fail() {
+// prepare_stderr_files("tests/compile-fail").unwrap();
+//
+// let t = trybuild::TestCases::new();
+// t.compile_fail("tests/compile-fail/**/*.rs");
+//}
#[test]
fn pass() {
|