diff options
author | Ingela Anderton Andin <[email protected]> | 2017-08-26 14:30:55 +0200 |
---|---|---|
committer | Ingela Anderton Andin <[email protected]> | 2017-09-01 16:15:24 +0200 |
commit | b3ca5727169deaa38917edca8288dcaff9a36800 (patch) | |
tree | ff04315517b92fcf24bc751df99d1ba2ec5e7b0f /lib/ssl/test/ssl_ECC_SUITE.erl | |
parent | 3bc5c3b35b3151143dffe94290c9ddf29b1b10d6 (diff) | |
download | otp-b3ca5727169deaa38917edca8288dcaff9a36800.tar.gz otp-b3ca5727169deaa38917edca8288dcaff9a36800.tar.bz2 otp-b3ca5727169deaa38917edca8288dcaff9a36800.zip |
ssl: Make sure test initilization is clean
Otherwhise test can be wrongly initialized and will fail as they try to run
with a broken setup.
Diffstat (limited to 'lib/ssl/test/ssl_ECC_SUITE.erl')
-rw-r--r-- | lib/ssl/test/ssl_ECC_SUITE.erl | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/lib/ssl/test/ssl_ECC_SUITE.erl b/lib/ssl/test/ssl_ECC_SUITE.erl index c48ccfb83b..64e8042b25 100644 --- a/lib/ssl/test/ssl_ECC_SUITE.erl +++ b/lib/ssl/test/ssl_ECC_SUITE.erl @@ -200,8 +200,14 @@ common_init_per_group(GroupName, Config) -> openssl_check(GroupName, Config) end. -end_per_group(_GroupName, Config) -> - proplists:delete(tls_version, Config). +end_per_group(GroupName, Config0) -> + case ssl_test_lib:is_tls_version(GroupName) of + true -> + Config = ssl_test_lib:clean_tls_version(Config0), + proplists:delete(tls_version, Config); + false -> + Config0 + end. %%-------------------------------------------------------------------- |