@@ -714,6 +714,10 @@ fn recursive_mkdir_empty() {
714714}
715715
716716#[ test]
717+ #[ cfg_attr(
718+ all( windows, target_arch = "aarch64" ) ,
719+ ignore = "SymLinks not enabled on Arm64 Windows runners https://github.com/actions/partner-runner-images/issues/94"
720+ ) ]
717721fn recursive_rmdir ( ) {
718722 let tmpdir = tmpdir ( ) ;
719723 let d1 = tmpdir. join ( "d1" ) ;
@@ -733,6 +737,10 @@ fn recursive_rmdir() {
733737}
734738
735739#[ test]
740+ #[ cfg_attr(
741+ all( windows, target_arch = "aarch64" ) ,
742+ ignore = "SymLinks not enabled on Arm64 Windows runners https://github.com/actions/partner-runner-images/issues/94"
743+ ) ]
736744fn recursive_rmdir_of_symlink ( ) {
737745 // test we do not recursively delete a symlink but only dirs.
738746 let tmpdir = tmpdir ( ) ;
@@ -1517,6 +1525,10 @@ fn file_open_not_found() {
15171525}
15181526
15191527#[ test]
1528+ #[ cfg_attr(
1529+ all( windows, target_arch = "aarch64" ) ,
1530+ ignore = "SymLinks not enabled on Arm64 Windows runners https://github.com/actions/partner-runner-images/issues/94"
1531+ ) ]
15201532fn create_dir_all_with_junctions ( ) {
15211533 let tmpdir = tmpdir ( ) ;
15221534 let target = tmpdir. join ( "target" ) ;
@@ -1995,6 +2007,10 @@ fn test_rename_symlink() {
19952007
19962008#[ test]
19972009#[ cfg( windows) ]
2010+ #[ cfg_attr(
2011+ all( windows, target_arch = "aarch64" ) ,
2012+ ignore = "SymLinks not enabled on Arm64 Windows runners https://github.com/actions/partner-runner-images/issues/94"
2013+ ) ]
19982014fn test_rename_junction ( ) {
19992015 let tmpdir = tmpdir ( ) ;
20002016 let original = tmpdir. join ( "original" ) ;
0 commit comments