We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ddc3d77 commit 68af357Copy full SHA for 68af357
crates/symbol-check/tests/all.rs
@@ -78,6 +78,10 @@ fn test_core_symbols() {
78
#[test]
79
fn test_visible_symbols() {
80
let t = TestTarget::from_env();
81
+ if t.is_windows() {
82
+ eprintln!("windows does not have visibility, skipping");
83
+ return;
84
+ }
85
let dir = tempdir().unwrap();
86
let lib_out = dir.path().join("libfoo.rlib");
87
t.rustc_build(&input_dir().join("good_lib.rs"), &lib_out, |cmd| cmd);
0 commit comments