use std::path::PathBuf; fn find_deps(names: &[&str]) -> Vec { let libs = std::fs::read_dir(concat!(env!("CARGO_MANIFEST_DIR"), "/../target/debug/deps")) .unwrap() .filter_map(|de| { let de = de.unwrap(); let p = de.path(); let fname = p.file_name().unwrap().to_str().unwrap(); match fname.split("-").collect::>().as_slice() { [lib_name, disambiguator] if disambiguator.ends_with(".rlib") => { Some((lib_name.to_string(), de.path())) } _ => None, } }) .collect::>(); names .iter() .map(|name| { libs.get(&format!("lib{}", name.replace("-", "_"))) .cloned() .unwrap_or_else(|| PathBuf::from(name)) }) .collect() } fn run_mode(mode: &'static str) { let deps = &["mantle", "serde", "serde_derive", "serde_cbor"]; let externs = deps .iter() .zip(find_deps(deps).iter()) .map(|(dep, p)| format!("--extern {}={}", dep, p.display())) .collect::>() .join(" "); let mut config = compiletest_rs::Config { mode: mode.parse().expect("Invalid mode."), src_base: PathBuf::from(format!("tests/{}", mode.replace("-", "_"))), target_rustcflags: Some(format!( "--edition=2018 \ --cfg feature=\"mantle-build-compiletest\" \ {}", externs )), rustc_path: PathBuf::from("mantle-build"), ..Default::default() } .tempdir(); config.link_deps(); compiletest_rs::run_tests(&config); } #[test] fn compile_test() { run_mode("ui"); }