-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcompile_tests.rs
64 lines (57 loc) · 1.66 KB
/
compile_tests.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
extern crate compiletest_rs as compiletest;
#[test]
fn run_pass() {
let mut config = compiletest::Config {
mode: compiletest::common::Mode::Ui,
src_base: std::path::PathBuf::from(if rustc_is_unstable() {
"tests/unstable-pass"
} else {
"tests/stable-pass"
}),
bless: std::env::var_os("BLESS").is_some(),
edition: Some("2021".into()),
target_rustcflags: Some(
[
"--extern you_can",
"--extern unbounded",
"-L target/debug/deps",
]
.join(" "),
),
..Default::default()
};
config.link_deps();
config.clean_rmeta();
compiletest::run_tests(&config);
}
#[test]
fn compile_fail() {
let mut config = compiletest::Config {
mode: compiletest::common::Mode::CompileFail,
src_base: std::path::PathBuf::from(if rustc_is_unstable() {
"tests/unstable-fail"
} else {
"tests/stable-fail"
}),
bless: std::env::var_os("BLESS").is_some(),
edition: Some("2021".into()),
target_rustcflags: Some(
[
"--extern you_can",
"--extern unbounded",
"-L target/debug/deps",
]
.join(" "),
),
..Default::default()
};
config.link_deps();
config.clean_rmeta();
compiletest::run_tests(&config);
}
fn rustc_is_unstable() -> bool {
match rustc_version::version_meta().unwrap().channel {
rustc_version::Channel::Nightly | rustc_version::Channel::Dev => true,
_ => option_env!("RUSTC_BOOTSTRAP").is_some(),
}
}