diff --git a/src/BizHawk.Tests/PlatformTests/Common.PathExtensions/PathExtensionTests.cs b/src/BizHawk.Tests/PlatformTests/Common.PathExtensions/PathExtensionTests.cs index 0726ec3be3..84bcb0ec85 100644 --- a/src/BizHawk.Tests/PlatformTests/Common.PathExtensions/PathExtensionTests.cs +++ b/src/BizHawk.Tests/PlatformTests/Common.PathExtensions/PathExtensionTests.cs @@ -37,8 +37,10 @@ namespace BizHawk.Tests.Common.PathExtensions [DataRow(true, "/usr", "/usr")] [DataRow(true, "/usr", "/usr/")] [DataRow(false, "/etc/rmdir", "/etc/rm")] // not naive StartsWith; these don't exist but the implementation uses `realpath -m` so they will be classed as two real and distinct dirs +#if false // don't work on NixOS and probably other distros, presumably all 32-bit distros [DataRow(true, "/usr/lib64", "/usr/lib")] // symlink to same dir [DataRow(true, "/usr/lib64/gconv", "/usr/lib")] // same symlink, checking child +#endif public void TestIsSubfolderOfUnix(bool expectedIsSubfolder, string childPath, string parentPath) { PlatformTestUtils.OnlyRunOnRealUnix();