Skip to content

Commit 68af357

Browse files
committed
fix windows
1 parent ddc3d77 commit 68af357

File tree

1 file changed

+4
-0
lines changed
  • crates/symbol-check/tests

1 file changed

+4
-0
lines changed

crates/symbol-check/tests/all.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,10 @@ fn test_core_symbols() {
7878
#[test]
7979
fn test_visible_symbols() {
8080
let t = TestTarget::from_env();
81+
if t.is_windows() {
82+
eprintln!("windows does not have visibility, skipping");
83+
return;
84+
}
8185
let dir = tempdir().unwrap();
8286
let lib_out = dir.path().join("libfoo.rlib");
8387
t.rustc_build(&input_dir().join("good_lib.rs"), &lib_out, |cmd| cmd);

0 commit comments

Comments
 (0)