rust/tests/compile-test.rs

37 lines
1,018 B
Rust
Raw Normal View History

2015-05-09 11:49:12 +02:00
extern crate compiletest_rs as compiletest;
2015-04-13 19:58:18 +02:00
use std::path::PathBuf;
2016-06-25 18:12:29 +02:00
use std::env::{set_var, var};
2015-04-13 19:58:18 +02:00
2016-04-14 21:24:46 +02:00
fn run_mode(dir: &'static str, mode: &'static str) {
2017-08-02 18:07:05 +02:00
let mut config = compiletest::Config::default();
2016-08-17 18:35:25 +02:00
let cfg_mode = mode.parse().expect("Invalid mode");
2017-08-01 17:54:21 +02:00
config.target_rustcflags = Some("-L target/debug/ -L target/debug/deps -Dwarnings".to_owned());
if let Ok(name) = var::<&str>("TESTNAME") {
let s: String = name.to_owned();
config.filter = Some(s)
}
2015-04-13 19:58:18 +02:00
config.mode = cfg_mode;
2017-08-01 17:54:21 +02:00
config.build_base = PathBuf::from("target/debug/test_build_base");
2016-04-14 21:24:46 +02:00
config.src_base = PathBuf::from(format!("tests/{}", dir));
2015-04-13 19:58:18 +02:00
compiletest::run_tests(&config);
}
fn prepare_env() {
2017-09-01 10:29:49 +02:00
set_var("CLIPPY_DISABLE_DOCS_LINKS", "true");
}
2015-04-13 19:58:18 +02:00
#[test]
fn compile_test() {
prepare_env();
2016-04-14 21:24:46 +02:00
run_mode("run-pass", "run-pass");
run_mode("ui", "ui");
2017-09-05 11:33:04 +02:00
#[cfg(target_os = "windows")]
run_mode("ui-windows", "ui");
#[cfg(not(target_os = "windows"))]
run_mode("ui-posix", "ui");
2015-04-13 19:58:18 +02:00
}