mirror of https://github.com/rwf2/Rocket.git
Upgrade to 'compiletest' 0.3.
This commit is contained in:
parent
f9f4822941
commit
78cc1bda7e
|
@ -20,7 +20,7 @@ ordermap = "0.2"
|
||||||
log = "0.3"
|
log = "0.3"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
compiletest_rs = "0.2.9"
|
compiletest_rs = "0.3.1"
|
||||||
|
|
||||||
[build-dependencies]
|
[build-dependencies]
|
||||||
yansi = "0.3"
|
yansi = "0.3"
|
||||||
|
|
|
@ -1,14 +1,12 @@
|
||||||
extern crate compiletest_rs as compiletest;
|
extern crate compiletest_rs as compiletest;
|
||||||
|
|
||||||
use std::path::PathBuf;
|
use std::path::PathBuf;
|
||||||
|
use compiletest::common::Mode;
|
||||||
|
|
||||||
fn run_mode(mode: &'static str) {
|
fn run_mode(mode: Mode) {
|
||||||
let mut config = compiletest::Config::default();
|
let mut config = compiletest::Config::default();
|
||||||
let cfg_mode = mode.parse().expect("Invalid mode");
|
config.mode = mode;
|
||||||
|
|
||||||
config.mode = cfg_mode;
|
|
||||||
config.src_base = PathBuf::from(format!("tests/{}", mode));
|
config.src_base = PathBuf::from(format!("tests/{}", mode));
|
||||||
// config.link_deps();
|
|
||||||
|
|
||||||
let flags = [
|
let flags = [
|
||||||
"-L crate=../target/debug/",
|
"-L crate=../target/debug/",
|
||||||
|
@ -21,5 +19,5 @@ fn run_mode(mode: &'static str) {
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn compile_test() {
|
fn compile_test() {
|
||||||
run_mode("compile-fail");
|
run_mode(Mode::CompileFail);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue