diff options
author | Magnus Henoch <[email protected]> | 2016-05-19 11:56:47 +0100 |
---|---|---|
committer | Magnus Henoch <[email protected]> | 2016-05-19 11:56:47 +0100 |
commit | c3e06e575b06f25601fdc60f4142a0d6b9e6eb7a (patch) | |
tree | 04ac1ee2d6bc8340a1d9ef392e27f29221d9de3f /lib/ssl/test/ssl_crl_SUITE.erl | |
parent | b219dbd698c74cf3c904445d13bb3453be6e1ac8 (diff) | |
download | otp-c3e06e575b06f25601fdc60f4142a0d6b9e6eb7a.tar.gz otp-c3e06e575b06f25601fdc60f4142a0d6b9e6eb7a.tar.bz2 otp-c3e06e575b06f25601fdc60f4142a0d6b9e6eb7a.zip |
Skip crl_hash_dir_expired test for LibreSSL
LibreSSL doesn't like it when we pass a negative number for the
-crlhours argument. I'm not sure if there is another way to make it
generate a CRL with expiry date in the past, so let's skip that test
in this case.
Diffstat (limited to 'lib/ssl/test/ssl_crl_SUITE.erl')
-rw-r--r-- | lib/ssl/test/ssl_crl_SUITE.erl | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/ssl/test/ssl_crl_SUITE.erl b/lib/ssl/test/ssl_crl_SUITE.erl index 27005682e9..06f9f4d5a7 100644 --- a/lib/ssl/test/ssl_crl_SUITE.erl +++ b/lib/ssl/test/ssl_crl_SUITE.erl @@ -353,6 +353,8 @@ crl_hash_dir_expired(Config) when is_list(Config) -> %% Add "issuing distribution point", to ensure that verification %% fails if there is no valid CRL. CertsConfig = make_certs:make_config([{issuing_distribution_point, true}]), + make_certs:can_generate_expired_crls(CertsConfig) + orelse throw({skip, "cannot generate CRLs with expiry date in the past"}), make_certs:intermediateCA(PrivDir, CA, "erlangCA", CertsConfig), EndUser = "CRL-maybe-expired", make_certs:enduser(PrivDir, CA, EndUser, CertsConfig), |