Skip to content

Commit e4f102d

Browse files
authored
Rollup merge of #126862 - ChrisDenton:needs-symlink, r=jieyouxu
Add needs-symlink directive to compiletest This is an alternative to #126846 that allows running symlink tests on Windows in CI but will ignore them locally if symlinks aren't available. A future improvement would be to check that the `needs-symlink` directive is used in rmake files that call `create_symlink` but this is just a quick PR to unblock Windows users who want to run tests locally without enabling symlinks.
2 parents 0149bc4 + b8a0030 commit e4f102d

File tree

5 files changed

+30
-0
lines changed

5 files changed

+30
-0
lines changed

src/tools/compiletest/src/header.rs

+1
Original file line numberDiff line numberDiff line change
@@ -877,6 +877,7 @@ const KNOWN_DIRECTIVE_NAMES: &[&str] = &[
877877
"needs-sanitizer-shadow-call-stack",
878878
"needs-sanitizer-support",
879879
"needs-sanitizer-thread",
880+
"needs-symlink",
880881
"needs-threads",
881882
"needs-unwind",
882883
"needs-wasmtime",

src/tools/compiletest/src/header/needs.rs

+26
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,11 @@ pub(super) fn handle_needs(
144144
condition: config.runner.as_ref().is_some_and(|r| r.contains("wasmtime")),
145145
ignore_reason: "ignored when wasmtime runner is not available",
146146
},
147+
Need {
148+
name: "needs-symlink",
149+
condition: cache.symlinks,
150+
ignore_reason: "ignored if symlinks are unavailable",
151+
},
147152
];
148153

149154
let (name, comment) = match ln.split_once([':', ' ']) {
@@ -209,6 +214,7 @@ pub(super) struct CachedNeedsConditions {
209214
xray: bool,
210215
rust_lld: bool,
211216
dlltool: bool,
217+
symlinks: bool,
212218
}
213219

214220
impl CachedNeedsConditions {
@@ -253,6 +259,7 @@ impl CachedNeedsConditions {
253259
.exists(),
254260

255261
dlltool: find_dlltool(&config),
262+
symlinks: has_symlinks(),
256263
}
257264
}
258265
}
@@ -279,3 +286,22 @@ fn find_dlltool(config: &Config) -> bool {
279286
};
280287
dlltool_found
281288
}
289+
290+
#[cfg(windows)]
291+
fn has_symlinks() -> bool {
292+
if std::env::var_os("CI").is_some() {
293+
return true;
294+
}
295+
let link = std::env::temp_dir().join("RUST_COMPILETEST_SYMLINK_CHECK");
296+
if std::os::windows::fs::symlink_file("DOES NOT EXIST", &link).is_ok() {
297+
std::fs::remove_file(&link).unwrap();
298+
true
299+
} else {
300+
false
301+
}
302+
}
303+
304+
#[cfg(not(windows))]
305+
fn has_symlinks() -> bool {
306+
true
307+
}

tests/run-make/symlinked-extern/rmake.rs

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
// can result in successful compilation.
1010

1111
//@ ignore-cross-compile
12+
//@ needs-symlink
1213

1314
use run_make_support::{create_symlink, cwd, fs_wrapper, rustc};
1415

tests/run-make/symlinked-libraries/rmake.rs

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
// See https://github.com/rust-lang/rust/issues/12459
77

88
//@ ignore-cross-compile
9+
//@ needs-symlink
910

1011
use run_make_support::{create_symlink, dynamic_lib_name, fs_wrapper, rustc};
1112

tests/run-make/symlinked-rlib/rmake.rs

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
// See https://github.com/rust-lang/rust/pull/32828
77

88
//@ ignore-cross-compile
9+
//@ needs-symlink
910

1011
use run_make_support::{create_symlink, cwd, rustc};
1112

0 commit comments

Comments
 (0)