2016-09-09 00:09:35 +00:00
|
|
|
extern crate compiletest_rs as compiletest;
|
|
|
|
|
|
|
|
use std::path::PathBuf;
|
|
|
|
|
|
|
|
fn run_mode(mode: &'static str) {
|
2017-08-03 00:37:20 +00:00
|
|
|
let mut config = compiletest::Config::default();
|
2017-01-05 02:00:26 +00:00
|
|
|
let cfg_mode = mode.parse().expect("Invalid mode");
|
2016-09-09 00:09:35 +00:00
|
|
|
|
|
|
|
config.mode = cfg_mode;
|
|
|
|
config.src_base = PathBuf::from(format!("tests/{}", mode));
|
2018-05-19 23:53:09 +00:00
|
|
|
config.link_deps();
|
2018-01-13 18:18:11 +00:00
|
|
|
|
2016-09-09 00:09:35 +00:00
|
|
|
compiletest::run_tests(&config);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn compile_test() {
|
|
|
|
run_mode("compile-fail");
|
|
|
|
run_mode("run-pass");
|
|
|
|
}
|