Skip to content

Commit

Permalink
Skip TestNativeLibraryProbingOnPathEnv on macOS (#81856)
Browse files Browse the repository at this point in the history
  • Loading branch information
elinor-fung authored Feb 9, 2023
1 parent 9a80090 commit 57b695a
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -174,11 +174,14 @@ public static int Main(string[] args)
{
TestNativeLibraryProbingOnLocalPath();
TestNativeLibraryProbingOnRelativePath();
if (!OperatingSystem.IsMacOS()) // This test fails due to a bug in OSX 10.12 combined with the weird way that HFS+ handles unicode file names
if (!OperatingSystem.IsMacOS())
{
// This test fails due to a bug in OSX 10.12 combined with the weird way that HFS+ handles unicode file names
TestNativeLibraryProbingUnicode();

// Propagating LD_LIBRARY_PATH/DYLD_LIBRARY_PATH may blocked on Mac due to System Integrity Protection
TestNativeLibraryProbingOnPathEnv();
}
TestNativeLibraryProbingOnPathEnv();
if (OperatingSystem.IsWindows())
{
TestNativeExeProbing();
Expand Down

0 comments on commit 57b695a

Please sign in to comment.