zynaddsubfx: disable PortChecker test unconditionally (#353529)

This commit is contained in:
Kira Bruneau 2024-11-04 11:30:31 -05:00 committed by GitHub
commit de2fa53b5b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -117,9 +117,10 @@ in stdenv.mkDerivation rec {
# TODO: Update cmake hook to make it simpler to selectively disable cmake tests: #113829 # TODO: Update cmake hook to make it simpler to selectively disable cmake tests: #113829
checkPhase = let checkPhase = let
disabledTests = disabledTests =
# PortChecker test fails when lashSupport is enabled because # PortChecker is non-deterministic. It's fixed in the master
# zynaddsubfx takes to long to start trying to connect to lash # branch, but backporting would require an update to rtosc, so
lib.optionals lashSupport [ "PortChecker" ] # we'll just disable it until the next release.
[ "PortChecker" ]
# Tests fail on aarch64 # Tests fail on aarch64
++ lib.optionals stdenv.hostPlatform.isAarch64 [ "MessageTest" "UnisonTest" ]; ++ lib.optionals stdenv.hostPlatform.isAarch64 [ "MessageTest" "UnisonTest" ];