diff options
author | Ingela Anderton Andin <[email protected]> | 2012-02-03 15:39:26 +0100 |
---|---|---|
committer | Ingela Anderton Andin <[email protected]> | 2012-02-03 15:39:26 +0100 |
commit | 9574407155cb33f1c35fc94b3534617c7f7fdf25 (patch) | |
tree | e929183f47402028f08685571eba78fac5501dc0 /lib/ssl/test/ssl_to_openssl_SUITE.erl | |
parent | ab2ba6f1b0713fbe5c78f67aeefb73ffc006e995 (diff) | |
download | otp-9574407155cb33f1c35fc94b3534617c7f7fdf25.tar.gz otp-9574407155cb33f1c35fc94b3534617c7f7fdf25.tar.bz2 otp-9574407155cb33f1c35fc94b3534617c7f7fdf25.zip |
Do not test sslv2 rejection with openssl-1.*
Reason sslv2 support seems to be by default turned of.
Diffstat (limited to 'lib/ssl/test/ssl_to_openssl_SUITE.erl')
-rw-r--r-- | lib/ssl/test/ssl_to_openssl_SUITE.erl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/ssl/test/ssl_to_openssl_SUITE.erl b/lib/ssl/test/ssl_to_openssl_SUITE.erl index f04ab9af50..01fca1f166 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-2011. All Rights Reserved. +%% Copyright Ericsson AB 2008-2012. 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 @@ -1446,8 +1446,8 @@ check_sane_openssl_renegotaite(Config) -> check_sane_openssl_sslv2(Config) -> case os:cmd("openssl version") of - "OpenSSL 1.0.0e" ++ _ -> - {skip, "Known option bug"}; + "OpenSSL 1.0.0" ++ _ -> + {skip, "sslv2 by default turned of in 1.*"}; _ -> Config end. |