diff options
author | Hans Nilsson <[email protected]> | 2017-07-07 11:47:44 +0200 |
---|---|---|
committer | Hans Nilsson <[email protected]> | 2017-07-07 11:47:44 +0200 |
commit | 2aa18c72f653b742b9c980930b3c5508a4087065 (patch) | |
tree | de46571418fe5f4b0cac907e84e866ed649d4dc7 /lib | |
parent | cca29b5d9669ca82790396c1cc7354de3f7a9dfd (diff) | |
parent | 6a213853cb0e8ba730e5ea64371c535e59280a4c (diff) | |
download | otp-2aa18c72f653b742b9c980930b3c5508a4087065.tar.gz otp-2aa18c72f653b742b9c980930b3c5508a4087065.tar.bz2 otp-2aa18c72f653b742b9c980930b3c5508a4087065.zip |
Merge branch 'maint'
Diffstat (limited to 'lib')
-rw-r--r-- | lib/crypto/test/blowfish_SUITE.erl | 5 | ||||
-rw-r--r-- | lib/crypto/test/crypto_SUITE.erl | 6 |
2 files changed, 11 insertions, 0 deletions
diff --git a/lib/crypto/test/blowfish_SUITE.erl b/lib/crypto/test/blowfish_SUITE.erl index c2d0d2621b..c9033ac4f8 100644 --- a/lib/crypto/test/blowfish_SUITE.erl +++ b/lib/crypto/test/blowfish_SUITE.erl @@ -47,6 +47,11 @@ init_per_suite(Config) -> case catch crypto:start() of ok -> + catch ct:comment("~s",[element(3,hd(crypto:info_lib()))]), + catch ct:log("crypto:info_lib() -> ~p~n" + "crypto:supports() -> ~p~n" + "crypto:version() -> ~p~n" + ,[crypto:info_lib(), crypto:supports(), crypto:version()]), Config; _Else -> {skip,"Could not start crypto!"} diff --git a/lib/crypto/test/crypto_SUITE.erl b/lib/crypto/test/crypto_SUITE.erl index 164f43dcb0..dbfe295900 100644 --- a/lib/crypto/test/crypto_SUITE.erl +++ b/lib/crypto/test/crypto_SUITE.erl @@ -177,6 +177,12 @@ init_per_suite(Config) -> try crypto:start() of ok -> + catch ct:comment("~s",[element(3,hd(crypto:info_lib()))]), + catch ct:log("crypto:info_lib() -> ~p~n" + "crypto:supports() -> ~p~n" + "crypto:version() -> ~p~n" + ,[crypto:info_lib(), crypto:supports(), crypto:version()]), + try crypto:strong_rand_bytes(1) of _ -> Config |