openssh: disable t-exec tests on musl

These tests fail on musl, as encountered by Alpine:
04d4e07ad8/main/openssh/APKBUILD (L132)

We can exclude this test category for now, similarly to darwin.
This commit is contained in:
Ryan Burns 2021-12-30 16:03:05 -08:00
parent ee5f17bf0b
commit ff07c87167

View File

@ -151,7 +151,8 @@ stdenv.mkDerivation rec {
'';
# integration tests hard to get working on darwin with its shaky
# sandbox
checkTarget = optional (!stdenv.isDarwin) "t-exec"
# t-exec tests fail on musl
checkTarget = optional (!stdenv.isDarwin && !stdenv.hostPlatform.isMusl) "t-exec"
# other tests are less demanding of the environment
++ [ "unit" "file-tests" "interop-tests" ];