Merge pull request #109348 from B4dM4n/pyopenssl-32bit-test

pyopenssl: skip test that fails on 32-bit architectures
This commit is contained in:
Sandro 2021-01-14 13:33:59 +01:00 committed by GitHub
commit c1e1834ead
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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.