Uh oh!
There was an error while loading. Please reload this page.
#52851 Enable/ Skip test case on MacCatalyst - #74070
Conversation
ghost
commented
Aug 17, 2022
Tagging subscribers to this area: @dotnet/area-infrastructure-libraries Issue Detailsnull
|
mkhamoyan
commented
Aug 17, 2022
/azp run runtime-extra-platforms |
|
Azure Pipelines successfully started running 1 pipeline(s). |
| } | ||
| // On OSX, the temp directory /tmp/ is a symlink to /private/tmp, so setting the current | ||
| // On OSX/MacCatalyst, the temp directory /tmp/ is a symlink to /private/tmp, so setting the current |
There was a problem hiding this comment.
Can /tmp be a symlink on other OSes too? Would it be better for the test to check whether /tmp is a symlink and skip the validation as appropriate? It would save us from disabling the test one OS at a time.
There was a problem hiding this comment.
That sounds better approach but I couldn't find how to check whether /tmp is a symlink.
There was a problem hiding this comment.
That sounds better approach but I couldn't find how to check whether /tmp is a symlink.
Console.WriteLine(((File.GetAttributes("/tmp") & FileAttributes.ReparsePoint) != 0) ? "Symlink" : "Not a symlink");
ghost
commented
Aug 17, 2022
Tagging subscribers to this area: @cston Issue Detailsnull
|
akoeplinger
commented
Aug 18, 2022
Failures are unrelated. |
Fixes#52851