pkgs/tools/text/gnugrep: Disabled tests for Aarch32

Some tests fail on qemu making it impossible to build on other architectures
This commit is contained in:
Sebastian
2024-12-16 12:28:58 +01:00
parent 7b9726f12c
commit 34d7324bcd
+2 -1
View File
@@ -32,7 +32,8 @@ stdenv.mkDerivation {
# cygwin: FAIL: multibyte-white-space
# freebsd: FAIL mb-non-UTF8-performance
# x86_64-darwin: fails 'stack-overflow' tests on Rosetta 2 emulator
doCheck = !stdenv.hostPlatform.isCygwin && !stdenv.hostPlatform.isFreeBSD && !(stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isx86_64) && !stdenv.buildPlatform.isRiscV64;
# aarch32: fails 'stack-overflow' when run on qemu under x86_64
doCheck = !stdenv.hostPlatform.isCygwin && !stdenv.hostPlatform.isFreeBSD && !(stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isx86_64) && !stdenv.buildPlatform.isRiscV64 && !stdenv.hostPlatform.isAarch32;
# On macOS, force use of mkdir -p, since Grep's fallback
# (./install-sh) is broken.