diff options
author | Hans Nilsson <[email protected]> | 2018-08-16 16:15:42 +0200 |
---|---|---|
committer | Hans Nilsson <[email protected]> | 2018-08-16 16:15:42 +0200 |
commit | d5af8b1f34f3e7b3f17711787de4ffb0903b54ad (patch) | |
tree | 10e2f34ac9e930142c48c4769e4df828c12188f1 | |
parent | aa98242ff41a27cea275e5f1ec7919b3ad959046 (diff) | |
parent | 0fac9bf23a138a41d29535ff027bd258b9575d27 (diff) | |
download | otp-d5af8b1f34f3e7b3f17711787de4ffb0903b54ad.tar.gz otp-d5af8b1f34f3e7b3f17711787de4ffb0903b54ad.tar.bz2 otp-d5af8b1f34f3e7b3f17711787de4ffb0903b54ad.zip |
Merge branch 'maint'
* maint:
crypto: Fail tests if crypto cannot start
-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 fed4311553..e5f86ea573 100644 --- a/lib/crypto/test/crypto_SUITE.erl +++ b/lib/crypto/test/crypto_SUITE.erl @@ -207,7 +207,7 @@ init_per_suite(Config) -> Config end catch _:_ -> - {skip, "Crypto did not start"} + {fail, "Crypto did not start"} end. end_per_suite(_Config) -> |