mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-23 20:22:51 +01:00
17 lines
399 B
Rust
17 lines
399 B
Rust
|
use std::path::PathBuf;
|
||
|
|
||
|
use compiletest_rs::{common::Mode, Config};
|
||
|
|
||
|
#[test]
|
||
|
fn ui() {
|
||
|
let mut config = Config::default();
|
||
|
|
||
|
config.mode = Mode::Ui;
|
||
|
config.src_base = PathBuf::from("ui/multi");
|
||
|
config.target_rustcflags = Some("--edition=2018 -Z unstable-options --extern rtfm".to_owned());
|
||
|
config.link_deps();
|
||
|
config.clean_rmeta();
|
||
|
|
||
|
compiletest_rs::run_tests(&config);
|
||
|
}
|