Merge pull request #300621 from theotheroracle/patch-1
gnugrep: disable tests on riscv64
This commit is contained in:
commit
332c8c13c5
1 changed files with 1 additions and 1 deletions
|
@ -31,7 +31,7 @@ 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.isCygwin && !stdenv.isFreeBSD && !(stdenv.isDarwin && stdenv.hostPlatform.isx86_64);
|
||||
doCheck = !stdenv.isCygwin && !stdenv.isFreeBSD && !(stdenv.isDarwin && stdenv.hostPlatform.isx86_64) && !stdenv.buildPlatform.isRiscV64;
|
||||
|
||||
# On macOS, force use of mkdir -p, since Grep's fallback
|
||||
# (./install-sh) is broken.
|
||||
|
|
Loading…
Reference in a new issue