gnupatch: disable flaky test

Fixes #525260

(cherry picked from commit 64ae7d0e37)
(cherry picked from commit cebcbaab7a6e5fc72132855f96f3f81ebd567df5)
This commit is contained in:
Michael Daniels
2026-06-22 08:19:28 +02:00
committed by Vladimír Čunát
parent 3fcd08afd1
commit 83c65a6c34
+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
'';