diff options
author | Ingela Anderton Andin <[email protected]> | 2015-03-19 10:05:41 +0100 |
---|---|---|
committer | Ingela Anderton Andin <[email protected]> | 2015-03-19 10:05:41 +0100 |
commit | a3cf4eb4cdd2ce178d81b62faa9f47485fd82331 (patch) | |
tree | 3dde0f78db1e67d09615ad98134652bc7b4c25ee /lib/ssl | |
parent | 8f7756db0c1eec733e24d9fadef7c855981c6dc1 (diff) | |
download | otp-a3cf4eb4cdd2ce178d81b62faa9f47485fd82331.tar.gz otp-a3cf4eb4cdd2ce178d81b62faa9f47485fd82331.tar.bz2 otp-a3cf4eb4cdd2ce178d81b62faa9f47485fd82331.zip |
Add workaround for problems with s_client defaults
Diffstat (limited to 'lib/ssl')
-rw-r--r-- | lib/ssl/test/ssl_to_openssl_SUITE.erl | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/lib/ssl/test/ssl_to_openssl_SUITE.erl b/lib/ssl/test/ssl_to_openssl_SUITE.erl index 942c446ec4..a847e5570b 100644 --- a/lib/ssl/test/ssl_to_openssl_SUITE.erl +++ b/lib/ssl/test/ssl_to_openssl_SUITE.erl @@ -1,7 +1,7 @@ %% %% %CopyrightBegin% %% -%% Copyright Ericsson AB 2008-2014. All Rights Reserved. +%% Copyright Ericsson AB 2008-2015. All Rights Reserved. %% %% The contents of this file are subject to the Erlang Public License, %% Version 1.1, (the "License"); you may not use this file except in @@ -248,7 +248,7 @@ basic_erlang_server_openssl_client(Config) when is_list(Config) -> Port = ssl_test_lib:inet_port(Server), Cmd = "openssl s_client -port " ++ integer_to_list(Port) ++ - " -host localhost" ++ workaround_openssl_s_clinent(), + " -host localhost" ++ workaround_openssl_s_client(), ct:log("openssl cmd: ~p~n", [Cmd]), @@ -1348,7 +1348,7 @@ supports_sslv2(Port) -> true end. -workaround_openssl_s_clinent() -> +workaround_openssl_s_client() -> %% http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=683159 %% https://bugs.archlinux.org/task/33919 %% Bug seems to manifests it self if TLS version is not @@ -1362,6 +1362,8 @@ workaround_openssl_s_clinent() -> " -no_tls1_2 "; "OpenSSL 1.0.1f" ++ _ -> " -no_tls1_2 "; - _ -> + "OpenSSL 1.0.1l" ++ _ -> + " -cipher AES256-SHA"; + _ -> "" end. |