diff options
author | Ingela Anderton Andin <[email protected]> | 2012-09-24 17:50:07 +0200 |
---|---|---|
committer | Ingela Anderton Andin <[email protected]> | 2012-09-26 14:50:55 +0200 |
commit | f421eabde4f5cbb0d4c718f2f07628626ab69c6a (patch) | |
tree | c0bfd766b098105378bd2bf14cb387ba5fcae965 /lib/ssl/test/ssl_npn_handshake_SUITE.erl | |
parent | 67989c3ad3fd6258ed766309fd67f9a2fa192b3f (diff) | |
download | otp-f421eabde4f5cbb0d4c718f2f07628626ab69c6a.tar.gz otp-f421eabde4f5cbb0d4c718f2f07628626ab69c6a.tar.bz2 otp-f421eabde4f5cbb0d4c718f2f07628626ab69c6a.zip |
ssl: Shorten test case names to workaround ct shortcomings on windows
Diffstat (limited to 'lib/ssl/test/ssl_npn_handshake_SUITE.erl')
-rw-r--r-- | lib/ssl/test/ssl_npn_handshake_SUITE.erl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/ssl/test/ssl_npn_handshake_SUITE.erl b/lib/ssl/test/ssl_npn_handshake_SUITE.erl index cfeb328e21..8597aa6740 100644 --- a/lib/ssl/test/ssl_npn_handshake_SUITE.erl +++ b/lib/ssl/test/ssl_npn_handshake_SUITE.erl @@ -49,8 +49,8 @@ next_protocol_tests() -> normal_npn_handshake_client_preference, fallback_npn_handshake, fallback_npn_handshake_server_preference, - client_tries_to_negotiate_but_server_does_not_support, - client_does_not_try_to_negotiate_but_server_supports_npn, + client_negotiate_server_does_not_support, + no_client_negotiate_but_server_supports_npn, renegotiate_from_client_after_npn_handshake ]. @@ -164,7 +164,7 @@ fallback_npn_handshake_server_preference(Config) when is_list(Config) -> %-------------------------------------------------------------------------------- -client_does_not_try_to_negotiate_but_server_supports_npn(Config) when is_list(Config) -> +no_client_negotiate_but_server_supports_npn(Config) when is_list(Config) -> run_npn_handshake(Config, [], [{next_protocols_advertised, [<<"spdy/1">>, <<"http/1.1">>, <<"http/1.0">>]}], @@ -172,7 +172,7 @@ client_does_not_try_to_negotiate_but_server_supports_npn(Config) when is_list(Co %-------------------------------------------------------------------------------- -client_tries_to_negotiate_but_server_does_not_support(Config) when is_list(Config) -> +client_negotiate_server_does_not_support(Config) when is_list(Config) -> run_npn_handshake(Config, [{client_preferred_next_protocols, {client, [<<"spdy/2">>], <<"http/1.1">>}}], [], |