pyopenssl: skip test that fails on 32-bit architectures

This commit is contained in:
Fabian Möller 2021-01-14 10:14:45 +01:00
parent 3022d75781
commit 9c9cf1ebbd
No known key found for this signature in database
GPG Key ID: 70B29D65DD8A7E31

View File

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