blob: d9080775952d970745273e5e558118498fdc1d25 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
extern crate compiletest_rs as compiletest;
fn run_mode(mode: &'static str) {
let mut config = compiletest::Config::default();
config.mode = mode.parse().expect("Invalid mode");
config.src_base = ["tests", mode].iter().collect();
config.verbose = true;
config.target_rustcflags = Some("-L target/debug/ -L target/debug/deps/".to_owned());
config.clean_rmeta();
compiletest::run_tests(&config);
}
#[test]
fn compile_test() {
run_mode("compile-fail");
}
|