mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-23 20:22:51 +01:00
19 lines
467 B
Rust
19 lines
467 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/single");
|
|
config.target_rustcflags = Some(
|
|
"--edition=2018 -L target/debug/deps -Z unstable-options --extern rtfm --extern lm3s6965"
|
|
.to_owned(),
|
|
);
|
|
config.link_deps();
|
|
config.clean_rmeta();
|
|
|
|
compiletest_rs::run_tests(&config);
|
|
}
|