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
+2 -1
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" ];