screen: disable tests on loongarch64 (#426840)

This commit is contained in:
Weijia Wang 2025-08-02 20:13:39 -06:00 committed by GitHub
commit 4c6aea256a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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/";