mirror of
https://github.com/denoland/rusty_v8.git
synced 2024-11-22 04:40:01 +00:00
12 lines
389 B
Rust
12 lines
389 B
Rust
// Don't run UI tests on emulated environment or nightly build.
|
|
#[cfg(not(target_os = "android"))]
|
|
#[rustversion::attr(not(nightly), test)]
|
|
fn ui() {
|
|
// This environment variable tells build.rs that we're running trybuild tests,
|
|
// so it won't rebuild V8.
|
|
std::env::set_var("DENO_TRYBUILD", "1");
|
|
|
|
let t = trybuild::TestCases::new();
|
|
t.compile_fail("tests/compile_fail/*.rs");
|
|
}
|