diff options
author | Ingela Anderton Andin <[email protected]> | 2017-04-13 18:09:37 +0200 |
---|---|---|
committer | Ingela Anderton Andin <[email protected]> | 2017-04-21 09:52:40 +0200 |
commit | ae877f133ee8d8beea37e7168677c9334aec6a75 (patch) | |
tree | 26f5fa05916635f84f5ea4357f3f574994e4dd91 /lib/ssl/test/ssl_ECC_SUITE.erl | |
parent | 72e0725c30960541e1209a45f6a9e56fecc3be95 (diff) | |
download | otp-ae877f133ee8d8beea37e7168677c9334aec6a75.tar.gz otp-ae877f133ee8d8beea37e7168677c9334aec6a75.tar.bz2 otp-ae877f133ee8d8beea37e7168677c9334aec6a75.zip |
ssl: Rewrite test data generation
With the new help functions for creating test data we can simplify the
code. And sometimes corrections have been made so that the test actually
perform the test intended.
Diffstat (limited to 'lib/ssl/test/ssl_ECC_SUITE.erl')
-rw-r--r-- | lib/ssl/test/ssl_ECC_SUITE.erl | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/lib/ssl/test/ssl_ECC_SUITE.erl b/lib/ssl/test/ssl_ECC_SUITE.erl index b77f909dfa..b05e2c74db 100644 --- a/lib/ssl/test/ssl_ECC_SUITE.erl +++ b/lib/ssl/test/ssl_ECC_SUITE.erl @@ -91,11 +91,7 @@ init_per_suite(Config0) -> end_per_suite(Config0), try crypto:start() of ok -> - %% make rsa certs using oppenssl - Config1 = ssl_test_lib:make_rsa_cert(Config0), - Config2 = ssl_test_lib:make_ecdsa_cert(Config1), - Config = ssl_test_lib:make_ecdh_rsa_cert(Config2), - ssl_test_lib:cert_options(Config) + Config0 catch _:_ -> {skip, "Crypto did not start"} end. |