Merge pull request #152834 from r-burns/openssh-musl

openssh: disable t-exec tests on musl
This commit is contained in:
Ryan Burns 2022-01-01 14:52:06 -08:00 committed by GitHub
commit 1850adff36
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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