nodejs_{20,22}: disable broken openssl tests

This commit is contained in:
Marcel
2026-04-17 06:58:07 +02:00
parent da8bac81b2
commit f5248024d1
+6
View File
@@ -512,6 +512,12 @@ let
++ lib.optional (
majorVersion == "22" && stdenv.buildPlatform.isDarwin
) "test/sequential/test-http-server-request-timeouts-mixed.js"
# https://github.com/NixOS/nixpkgs/pull/507974#issuecomment-4249433124
# OpenSSL reports different errors
# https://github.com/nodejs/node/pull/62629
# patch does not apply
++ lib.optional (!lib.versionAtLeast version "24") "test-tls-junk-server"
++ lib.optional (majorVersion == "22") "test-tls-alert-handling"
)
}"
];