diff options
author | Lars Thorsen <[email protected]> | 2018-04-04 14:40:46 +0200 |
---|---|---|
committer | Lars Thorsen <[email protected]> | 2018-04-27 12:30:20 +0200 |
commit | 495d56f879be31be660961393ece4d3b9103a09a (patch) | |
tree | 14c1696eda0c9e092cbd5fcb50140b896bae3882 /lib/crypto | |
parent | 5b1ef96b3f2dd9e331fd6ecb1a3150e3033ea59a (diff) | |
download | otp-495d56f879be31be660961393ece4d3b9103a09a.tar.gz otp-495d56f879be31be660961393ece4d3b9103a09a.tar.bz2 otp-495d56f879be31be660961393ece4d3b9103a09a.zip |
[crypto] Skip test cases for specific ssl version on old machine
Skip the test cases in the engine_SUITE on a specific ssl version
used on one test machine.
Diffstat (limited to 'lib/crypto')
-rw-r--r-- | lib/crypto/test/engine_SUITE.erl | 24 |
1 files changed, 13 insertions, 11 deletions
diff --git a/lib/crypto/test/engine_SUITE.erl b/lib/crypto/test/engine_SUITE.erl index f410542f72..3f176f165d 100644 --- a/lib/crypto/test/engine_SUITE.erl +++ b/lib/crypto/test/engine_SUITE.erl @@ -70,19 +70,21 @@ groups() -> init_per_suite(Config) -> - try crypto:start() of - ok -> - case crypto:info_lib() of - [{_,_, <<"OpenSSL 1.0.1s-freebsd 1 Mar 2016">>}] -> - {skip, "Problem with engine on OpenSSL 1.0.1s-freebsd"}; - _ -> + case crypto:info_lib() of + [{_,_, <<"OpenSSL 1.0.1s-freebsd 1 Mar 2016">>}] -> + {skip, "Problem with engine on OpenSSL 1.0.1s-freebsd"}; + Res -> + ct:log("crypto:info_lib() -> ~p\n", [Res]), + try crypto:start() of + ok -> + Config; + {error,{already_started,crypto}} -> Config - end; - {error,{already_started,crypto}} -> - Config - catch _:_ -> - {skip, "Crypto did not start"} + catch _:_ -> + {skip, "Crypto did not start"} + end end. + end_per_suite(_Config) -> ok. |