diff options
author | Andreas Schultz <[email protected]> | 2014-05-17 16:17:05 +0200 |
---|---|---|
committer | Andreas Schultz <[email protected]> | 2014-05-28 12:20:00 +0200 |
commit | 9163e290194b8c82ec291d45a9dff79654c754f6 (patch) | |
tree | 695b494837320c6ca43ef66c602a882c2fa8631b /lib/ssl/test/ssl_basic_SUITE.erl | |
parent | 6b6cd01b607a1bfcf61bb6d5f4cc3fe9b37445db (diff) | |
download | otp-9163e290194b8c82ec291d45a9dff79654c754f6.tar.gz otp-9163e290194b8c82ec291d45a9dff79654c754f6.tar.bz2 otp-9163e290194b8c82ec291d45a9dff79654c754f6.zip |
SSL: in tests, filter ssl client ciphers for version compatibility
Some psk and some not yet supported anonymous suites are only supported
with TLS version >= 1.2. This adds them to the tests and makes sure
that they are not tested on TLS versions that do not support them.
Diffstat (limited to 'lib/ssl/test/ssl_basic_SUITE.erl')
-rw-r--r-- | lib/ssl/test/ssl_basic_SUITE.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ssl/test/ssl_basic_SUITE.erl b/lib/ssl/test/ssl_basic_SUITE.erl index a1b766e05f..0905bb0c25 100644 --- a/lib/ssl/test/ssl_basic_SUITE.erl +++ b/lib/ssl/test/ssl_basic_SUITE.erl @@ -3694,7 +3694,7 @@ run_suites(Ciphers, Version, Config, Type) -> Result = lists:map(fun(Cipher) -> cipher(Cipher, Version, Config, ClientOpts, ServerOpts) end, - Ciphers), + ssl_test_lib:filter_suites(Ciphers)), case lists:flatten(Result) of [] -> ok; |