diff options
author | Emilia Kasper <emilia@openssl.org> | 2016-07-05 19:06:23 +0200 |
---|---|---|
committer | Emilia Kasper <emilia@openssl.org> | 2016-07-20 13:55:53 +0200 |
commit | 590ed3d7ea555b877859f6b491020112588fe1be (patch) | |
tree | 0461027d23e45e0e29fdaed81e92fbe4b324c065 /test/ssl_test.tmpl | |
parent | fix crypto-mdebug build (diff) | |
download | openssl-590ed3d7ea555b877859f6b491020112588fe1be.tar.xz openssl-590ed3d7ea555b877859f6b491020112588fe1be.zip |
SSL test framework: port resumption tests
Systematically test every server-side version downgrade or upgrade.
Client version upgrade or downgrade could be tested analogously but will
be done in a later change.
Reviewed-by: Rich Salz <rsalz@openssl.org>
Reviewed-by: Matt Caswell <matt@openssl.org>
Diffstat (limited to 'test/ssl_test.tmpl')
-rw-r--r-- | test/ssl_test.tmpl | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/test/ssl_test.tmpl b/test/ssl_test.tmpl index 6a5333e9f4..31699183a1 100644 --- a/test/ssl_test.tmpl +++ b/test/ssl_test.tmpl @@ -3,11 +3,14 @@ ssl_conf = {-$testname-}-ssl [{-$testname-}-ssl] server = {-$testname-}-server{- - # The server2 section is optional. + # The following sections are optional. $OUT = ""; if (%server2) { $OUT .= "\nserver2 = $testname-server2"; } + if (%resume_server) { + $OUT .= "\nresume-server = $testname-resume-server"; + } -} client = {-$testname-}-client @@ -22,6 +25,12 @@ client = {-$testname-}-client $OUT .= qq{$key} . " = " . qq{$server2{$key}\n} if defined $server2{$key}; } } + if (%resume_server) { + $OUT .= "\n[$testname-resume-server]\n"; + foreach my $key (sort keys %resume_server) { + $OUT .= qq{$key} . " = " . qq{$resume_server{$key}\n} if defined $resume_server{$key}; + } + } -} [{-$testname-}-client] {- |