File tree 5 files changed +30
-0
lines changed
src/tools/compiletest/src
5 files changed +30
-0
lines changed Original file line number Diff line number Diff line change @@ -875,6 +875,7 @@ const KNOWN_DIRECTIVE_NAMES: &[&str] = &[
875
875
"needs-sanitizer-shadow-call-stack" ,
876
876
"needs-sanitizer-support" ,
877
877
"needs-sanitizer-thread" ,
878
+ "needs-symlink" ,
878
879
"needs-threads" ,
879
880
"needs-unwind" ,
880
881
"needs-wasmtime" ,
Original file line number Diff line number Diff line change @@ -144,6 +144,11 @@ pub(super) fn handle_needs(
144
144
condition : config. runner . as_ref ( ) . is_some_and ( |r| r. contains ( "wasmtime" ) ) ,
145
145
ignore_reason : "ignored when wasmtime runner is not available" ,
146
146
} ,
147
+ Need {
148
+ name : "needs-symlink" ,
149
+ condition : cache. symlinks ,
150
+ ignore_reason : "ignored if symlinks are unavailable" ,
151
+ } ,
147
152
] ;
148
153
149
154
let ( name, comment) = match ln. split_once ( [ ':' , ' ' ] ) {
@@ -209,6 +214,7 @@ pub(super) struct CachedNeedsConditions {
209
214
xray : bool ,
210
215
rust_lld : bool ,
211
216
dlltool : bool ,
217
+ symlinks : bool ,
212
218
}
213
219
214
220
impl CachedNeedsConditions {
@@ -253,6 +259,7 @@ impl CachedNeedsConditions {
253
259
. exists ( ) ,
254
260
255
261
dlltool : find_dlltool ( & config) ,
262
+ symlinks : has_symlinks ( ) ,
256
263
}
257
264
}
258
265
}
@@ -279,3 +286,22 @@ fn find_dlltool(config: &Config) -> bool {
279
286
} ;
280
287
dlltool_found
281
288
}
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
+ }
Original file line number Diff line number Diff line change 9
9
// can result in successful compilation.
10
10
11
11
//@ ignore-cross-compile
12
+ //@ needs-symlink
12
13
13
14
use run_make_support:: { create_symlink, cwd, fs_wrapper, rustc} ;
14
15
Original file line number Diff line number Diff line change 6
6
// See https://github.com/rust-lang/rust/issues/12459
7
7
8
8
//@ ignore-cross-compile
9
+ //@ needs-symlink
9
10
10
11
use run_make_support:: { create_symlink, dynamic_lib_name, fs_wrapper, rustc} ;
11
12
Original file line number Diff line number Diff line change 6
6
// See https://github.com/rust-lang/rust/pull/32828
7
7
8
8
//@ ignore-cross-compile
9
+ //@ needs-symlink
9
10
10
11
use run_make_support:: { create_symlink, cwd, rustc} ;
11
12
You can’t perform that action at this time.
0 commit comments