summaryrefslogtreecommitdiffstats
path: root/test/ssl-tests
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2016-12-25 17:57:32 +0100
committerRichard Levitte <levitte@openssl.org>2016-12-29 15:42:22 +0100
commitac6eb1529349e3daf69c686c9a9f778a15fda592 (patch)
tree3c78390c8333349afbf020007173aa8390559ec3 /test/ssl-tests
parent7638e378465433ecfc4333ef3033e59c77cb0006 (diff)
80-test_ssl_new.t: Make 19-mac-then-encrypt.conf work without TLSv1.2
Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/2144)
Diffstat (limited to 'test/ssl-tests')
-rw-r--r--test/ssl-tests/19-mac-then-encrypt.conf.in7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/ssl-tests/19-mac-then-encrypt.conf.in b/test/ssl-tests/19-mac-then-encrypt.conf.in
index 096423bde2..d51cfa3ea7 100644
--- a/test/ssl-tests/19-mac-then-encrypt.conf.in
+++ b/test/ssl-tests/19-mac-then-encrypt.conf.in
@@ -11,6 +11,8 @@
package ssltests;
+use OpenSSL::Test::Utils;
+
our @tests = (
{
name => "disable-encrypt-then-mac-server-sha",
@@ -52,6 +54,9 @@ our @tests = (
"ExpectedResult" => "Success",
},
},
+);
+
+my @tests_tls1_2 = (
{
name => "disable-encrypt-then-mac-server-sha2",
server => {
@@ -93,3 +98,5 @@ our @tests = (
},
},
);
+
+push @tests, @tests_tls1_2 unless disabled("tls1_2");