Skip to content

Commit 47c09f6

Browse files
committed
do not check static linkage on windows
1 parent 99d6d95 commit 47c09f6

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

minion-tests/src/master.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -152,6 +152,9 @@ fn get_filter(matches: &clap::ArgMatches) -> Box<dyn Fn(&'static dyn TestCase) -
152152
}
153153

154154
fn check_static() {
155+
if cfg!(not(target_os = "linux")) {
156+
return;
157+
}
155158
let ldd_output = std::process::Command::new("ldd")
156159
.arg(std::env::current_exe().unwrap())
157160
.output()

0 commit comments

Comments
 (0)