summaryrefslogtreecommitdiffstats
path: root/test/recipes
diff options
context:
space:
mode:
authorEmilia Kasper <emilia@openssl.org>2016-08-08 14:42:08 +0200
committerEmilia Kasper <emilia@openssl.org>2016-08-08 15:14:52 +0200
commit2ac6bdc02931ead9e028d6e41640b035e78bc722 (patch)
tree6ccea9cacd91d88c00e92ad0aeff6ba3daa97e45 /test/recipes
parent7b7cea6d712c35d52b4e2031c8a9410866e2aab6 (diff)
NPN and ALPN: test resumption
In NPN and ALPN, the protocol is renegotiated upon resumption. Test that resumption picks up changes to the extension. Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'test/recipes')
-rw-r--r--test/recipes/80-test_ssl_old.t18
1 files changed, 1 insertions, 17 deletions
diff --git a/test/recipes/80-test_ssl_old.t b/test/recipes/80-test_ssl_old.t
index 8f43d6b691..631adbf7eb 100644
--- a/test/recipes/80-test_ssl_old.t
+++ b/test/recipes/80-test_ssl_old.t
@@ -79,7 +79,7 @@ my $client_sess="client.ss";
# new format in ssl_test.c and add recipes to 80-test_ssl_new.t instead.
plan tests =>
1 # For testss
- +9 # For the first testssl
+ +8 # For the first testssl
;
subtest 'test_ss' => sub {
@@ -526,22 +526,6 @@ sub testssl {
};
- subtest 'Next Protocol Negotiation Tests' => sub {
- ######################################################################
-
- plan tests => 2;
-
- SKIP: {
- skip "TLSv1.0 is not supported by this OpenSSL build", 2
- if $no_tls1;
- skip "Next Protocol Negotiation is not supported by this OpenSSL build", 2
- if disabled("nextprotoneg");
-
- ok(run(test([@ssltest, "-bio_pair", "-tls1", "-npn_client", "-npn_server", "-num", "2"])));
- ok(run(test([@ssltest, "-bio_pair", "-tls1", "-npn_client", "-npn_server", "-num", "2", "-reuse"])));
- }
- };
-
subtest 'Custom Extension tests' => sub {
######################################################################