diff options
author | Ingela Anderton Andin <[email protected]> | 2012-09-21 15:57:25 +0200 |
---|---|---|
committer | Ingela Anderton Andin <[email protected]> | 2012-09-21 15:57:25 +0200 |
commit | 67989c3ad3fd6258ed766309fd67f9a2fa192b3f (patch) | |
tree | 922a8462677805b8ee0a99cec881785aa4f668a9 /lib/ssl/test/ssl_npn_hello_SUITE.erl | |
parent | c1fbf30d1fb4bcae9ddbc6e444447132af14030b (diff) | |
download | otp-67989c3ad3fd6258ed766309fd67f9a2fa192b3f.tar.gz otp-67989c3ad3fd6258ed766309fd67f9a2fa192b3f.tar.bz2 otp-67989c3ad3fd6258ed766309fd67f9a2fa192b3f.zip |
ssl: SSL 3.0 does not support next protocol negotiation
Also shorten test cases names to workaround test framework problems
on windows
Diffstat (limited to 'lib/ssl/test/ssl_npn_hello_SUITE.erl')
-rw-r--r-- | lib/ssl/test/ssl_npn_hello_SUITE.erl | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/ssl/test/ssl_npn_hello_SUITE.erl b/lib/ssl/test/ssl_npn_hello_SUITE.erl index 0bca8bbeb4..5102c74e87 100644 --- a/lib/ssl/test/ssl_npn_hello_SUITE.erl +++ b/lib/ssl/test/ssl_npn_hello_SUITE.erl @@ -111,5 +111,7 @@ create_server_hello_with_no_advertised_protocols_test(_Config) -> undefined = Hello#server_hello.next_protocol_negotiation. create_server_hello_with_advertised_protocols_test(_Config) -> - Hello = ssl_handshake:server_hello(<<>>, {3, 0}, create_connection_states(), false, [<<"spdy/1">>, <<"http/1.0">>, <<"http/1.1">>]), - #next_protocol_negotiation{extension_data = <<6, "spdy/1", 8, "http/1.0", 8, "http/1.1">>} = Hello#server_hello.next_protocol_negotiation. + Hello = ssl_handshake:server_hello(<<>>, {3, 0}, create_connection_states(), + false, [<<"spdy/1">>, <<"http/1.0">>, <<"http/1.1">>]), + #next_protocol_negotiation{extension_data = <<6, "spdy/1", 8, "http/1.0", 8, "http/1.1">>} = + Hello#server_hello.next_protocol_negotiation. |