diff options
author | Hans Nilsson <[email protected]> | 2019-02-26 10:48:58 +0100 |
---|---|---|
committer | Hans Nilsson <[email protected]> | 2019-02-27 15:01:29 +0100 |
commit | 7deef4433576e40a1cd337d2e62a7446eae4caa7 (patch) | |
tree | fbafa81ed74d264069012505a226e92fabd239d2 /lib/crypto | |
parent | 7ff0d33de285d895d410de415010c35634371297 (diff) | |
download | otp-7deef4433576e40a1cd337d2e62a7446eae4caa7.tar.gz otp-7deef4433576e40a1cd337d2e62a7446eae4caa7.tar.bz2 otp-7deef4433576e40a1cd337d2e62a7446eae4caa7.zip |
crypto: Fail if FIPS mode is present but can't be enabled
Diffstat (limited to 'lib/crypto')
-rw-r--r-- | lib/crypto/test/crypto_SUITE.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/crypto/test/crypto_SUITE.erl b/lib/crypto/test/crypto_SUITE.erl index 781cf08d87..cda96ef693 100644 --- a/lib/crypto/test/crypto_SUITE.erl +++ b/lib/crypto/test/crypto_SUITE.erl @@ -261,7 +261,7 @@ init_per_group(fips, Config) -> enabled = crypto:info_fips(), FIPSConfig; false -> - {skip, "Failed to enable FIPS mode"} + {fail, "Failed to enable FIPS mode"} end; not_supported -> {skip, "FIPS mode not supported"} |