perl.pkgs.Test2Harness: Disable tests on powerpc64 (#481353)

This commit is contained in:
Cosima Neidahl
2026-01-25 13:51:10 +00:00
committed by GitHub
+3 -2
View File
@@ -33240,9 +33240,10 @@ with self;
./scripts/yath test -j $NIX_BUILD_CORES
'';
# The t/integration/preload.t test is broken on riscv64
# The t/integration/preload.t test is broken on riscv64 & powerpc64
# https://github.com/Test-More/Test2-Harness/issues/290
doCheck = !stdenv.hostPlatform.isRiscV;
doCheck =
!stdenv.hostPlatform.isRiscV && !(stdenv.hostPlatform.isPower64 && stdenv.hostPlatform.isBigEndian);
propagatedBuildInputs = [
DataUUID