aboutsummaryrefslogtreecommitdiff
path: root/tests/cfail.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/cfail.rs')
-rw-r--r--tests/cfail.rs16
1 files changed, 0 insertions, 16 deletions
diff --git a/tests/cfail.rs b/tests/cfail.rs
deleted file mode 100644
index 44c982ce..00000000
--- a/tests/cfail.rs
+++ /dev/null
@@ -1,16 +0,0 @@
-extern crate compiletest_rs as compiletest;
-
-use std::path::PathBuf;
-
-use compiletest::common::Mode;
-
-#[test]
-fn cfail() {
- let mut config = compiletest::default_config();
- config.mode = Mode::CompileFail;
- config.src_base = PathBuf::from(format!("tests/cfail"));
- config.target_rustcflags =
- Some("-L target/debug -L target/debug/deps ".to_string());
-
- compiletest::run_tests(&config);
-}