gnupatch: disable flaky test

Fixes #525260
This commit is contained in:
Michael Daniels
2026-05-29 21:36:17 -04:00
parent 225a837149
commit 64ae7d0e37
+4 -2
View File
@@ -15,8 +15,10 @@ stdenv.mkDerivation (finalAttrs: {
hash = "sha256-+Hzuae7CtPy/YKOWsDCtaqNBXxkqpffuhMrV4R9/WuM=";
};
# This test is filesystem-dependent - observed failing on ZFS
postPatch = lib.optionalString stdenv.hostPlatform.isFreeBSD ''
# This test is filesystem-dependent - observed failing on ZFS.
# It is also just plain flaky: it has been observed failing about 10%
# of the time on btrfs and ext4 too.
postPatch = ''
sed -E -i -e '/bad-filenames/d' tests/Makefile.am
'';