Check staticlib name falls back to rust_out
This commit is contained in:
parent
c6d94821f0
commit
3fd645e254
@ -1,9 +1,13 @@
|
|||||||
//@ only-windows
|
//@ only-windows
|
||||||
// Reason: dos devices are a Windows thing
|
// Reason: dos devices are a Windows thing
|
||||||
|
|
||||||
use run_make_support::rustc;
|
use std::path::Path;
|
||||||
|
|
||||||
|
use run_make_support::{rustc, static_lib_name};
|
||||||
|
|
||||||
fn main() {
|
fn main() {
|
||||||
rustc().input(r"\\.\NUL").crate_type("staticlib").run();
|
rustc().input(r"\\.\NUL").crate_type("staticlib").run();
|
||||||
rustc().input(r"\\?\NUL").crate_type("staticlib").run();
|
rustc().input(r"\\?\NUL").crate_type("staticlib").run();
|
||||||
|
|
||||||
|
assert!(Path::new(&static_lib_name("rust_out")).exists());
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user