Merge pull request #309418 from ckiee/boehm-qemu-user-aarch64

boehmgc: disable tests on aarch64-linux
This commit is contained in:
Aleksana 2024-05-24 18:54:01 +08:00 committed by GitHub
commit 1447e05590
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -50,8 +50,9 @@ stdenv.mkDerivation (finalAttrs: {
"CFLAGS_EXTRA=-DNO_SOFT_VDB"
];
# `gctest` fails under emulation on aarch64-darwin
doCheck = !(stdenv.isDarwin && stdenv.isx86_64);
# `gctest` fails under x86_64 emulation on aarch64-darwin
# and also on aarch64-linux (qemu-user)
doCheck = !((stdenv.isDarwin && stdenv.isx86_64) || (stdenv.isLinux && stdenv.isAarch64));
enableParallelBuilding = true;