aboutsummaryrefslogtreecommitdiff
path: root/tests/single.rs
blob: 93addf6e02f2a34afb9f30c4cfbd950c508f358d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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);
}