pyopenssl: skip test that fails on i686

Found in https://github.com/NixOS/nixpkgs/pull/105454#issuecomment-743973848

Upstream issue https://github.com/pyca/pyopenssl/issues/974
This commit is contained in:
Arnout Engelen 2020-12-13 10:48:18 +01:00 committed by Frederik Rietdijk
parent d094f26f32
commit 40b1f0d473

View file

@ -54,6 +54,9 @@ let
optionals (hasPrefix "libressl" openssl.meta.name) failingLibresslTests
) ++ (
optionals (versionAtLeast (getVersion openssl.name) "1.1") failingOpenSSL_1_1Tests
) ++ (
# https://github.com/pyca/pyopenssl/issues/974
optionals stdenv.isi686 [ "test_verify_with_time" ]
);
# Compose the final string expression, including the "-k" and the single quotes.