Browse Source

Skip flag_if_supported test on Windows

cmd
Alex Crichton 7 years ago
parent
commit
3ea767f12a
  1. 3
      tests/test.rs

3
tests/test.rs

@ -185,6 +185,9 @@ fn gnu_shared() {
#[test] #[test]
fn gnu_flag_if_supported() { fn gnu_flag_if_supported() {
if cfg!(windows) {
return
}
let test = Test::gnu(); let test = Test::gnu();
test.gcc() test.gcc()
.file("foo.c") .file("foo.c")

Loading…
Cancel
Save