2017-07-18 22:14:39 +02:00
|
|
|
extern crate compiletest_rs as compiletest;
|
|
|
|
|
|
|
|
use std::path::PathBuf;
|
|
|
|
|
|
|
|
use compiletest::common::Mode;
|
2017-09-22 13:46:05 +02:00
|
|
|
use compiletest::Config;
|
2017-07-18 22:14:39 +02:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn cfail() {
|
2017-09-22 13:46:05 +02:00
|
|
|
let mut config = Config::default();
|
2017-07-18 22:14:39 +02:00
|
|
|
config.mode = Mode::CompileFail;
|
|
|
|
config.src_base = PathBuf::from(format!("tests/cfail"));
|
2017-07-24 03:51:58 +02:00
|
|
|
config.target_rustcflags = Some(
|
|
|
|
"-C panic=abort -L target/debug -L target/debug/deps ".to_string(),
|
|
|
|
);
|
2017-07-18 22:14:39 +02:00
|
|
|
|
|
|
|
compiletest::run_tests(&config);
|
|
|
|
}
|