about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--tests/run-make/dos-device-input/rmake.rs6
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/run-make/dos-device-input/rmake.rs b/tests/run-make/dos-device-input/rmake.rs
index cc34dd55107..dee3b86f095 100644
--- a/tests/run-make/dos-device-input/rmake.rs
+++ b/tests/run-make/dos-device-input/rmake.rs
@@ -1,9 +1,13 @@
 //@ only-windows
 // 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() {
     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());
 }