File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
src/libraries/Microsoft.VisualBasic.Core/tests/Microsoft/VisualBasic/FileIO Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -293,12 +293,11 @@ public void CurrentDirectoryGet()
293293 Assert . Equal ( FileIO . FileSystem . CurrentDirectory , CurrentDirectory ) ;
294294 }
295295
296- // On OSX, the temp directory /tmp/ is a symlink to /private/tmp, so setting the current
296+ // On OSX/MacCatalyst , the temp directory /tmp/ is a symlink to /private/tmp, so setting the current
297297 // directory to a symlinked path will result in GetCurrentDirectory returning the absolute
298298 // path that followed the symlink.
299- [ ConditionalFact ( typeof ( PlatformDetection ) , nameof ( PlatformDetection . IsNotOSX ) ) ]
299+ [ ConditionalFact ( typeof ( PlatformDetection ) , nameof ( PlatformDetection . IsNotOSX ) , nameof ( PlatformDetection . IsNotMacCatalyst ) ) ]
300300 [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/50572" , TestPlatforms . Android ) ]
301- [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/52851" , TestPlatforms . MacCatalyst ) ]
302301 public void CurrentDirectorySet ( )
303302 {
304303 var SavedCurrentDirectory = System . IO . Directory . GetCurrentDirectory ( ) ;
You can’t perform that action at this time.
0 commit comments