screen: disable tests on loongarch64

This commit is contained in:
Weijia Wang 2025-07-20 08:19:28 +02:00
parent c569fbf96f
commit 0d4ab9b08c

View File

@ -35,8 +35,10 @@ stdenv.mkDerivation rec {
];
# The test suite seems to have some glibc malloc hooks that don't exist/link on macOS
# With pkgsLLVM: tests/test-winmsgcond.c:53: assertion 'wmc_end(&wmc, pos + 1, &chg) == pos' failed
doCheck = !stdenv.hostPlatform.isDarwin && !stdenv.hostPlatform.useLLVM;
# With pkgsLLVM / on loongarch64-linux:
# tests/test-winmsgcond.c:53: assertion 'wmc_end(&wmc, pos + 1, &chg) == pos' failed
doCheck =
!stdenv.hostPlatform.isDarwin && !stdenv.hostPlatform.useLLVM && !stdenv.hostPlatform.isLoongArch64;
meta = with lib; {
homepage = "https://www.gnu.org/software/screen/";