115c1b4830
This test isn't high enough signal to have all contributors run it.
30 lines
683 B
Rust
30 lines
683 B
Rust
use std::process::{Command, ExitStatus, Stdio};
|
|
|
|
fn has_cargo_expand() -> bool {
|
|
let cargo_expand = if cfg!(windows) {
|
|
"cargo-expand.exe"
|
|
} else {
|
|
"cargo-expand"
|
|
};
|
|
|
|
Command::new(cargo_expand)
|
|
.arg("--version")
|
|
.stdin(Stdio::null())
|
|
.stdout(Stdio::null())
|
|
.stderr(Stdio::null())
|
|
.status()
|
|
.as_ref()
|
|
.map(ExitStatus::success)
|
|
.unwrap_or(false)
|
|
}
|
|
|
|
fn has_rustfmt() -> bool {
|
|
toolchain_find::find_installed_component("rustfmt").is_some()
|
|
}
|
|
|
|
fn main() {
|
|
if cfg!(feature = "expandtest") && has_cargo_expand() && has_rustfmt() {
|
|
println!("cargo:rustc-cfg=expandtest");
|
|
}
|
|
}
|