summaryrefslogtreecommitdiffstats
path: root/test/recipes
diff options
context:
space:
mode:
authorEmilia Kasper <emilia@openssl.org>2016-08-19 14:19:32 +0200
committerEmilia Kasper <emilia@openssl.org>2016-08-19 14:50:25 +0200
commit15269e565427e9025c733c2a8b3d4b6d6c5a3bd3 (patch)
tree5fb06d7ad3a6cf5f997d08245d08ba4059d13a41 /test/recipes
parent45dcb5cf3d8a67ad69aa4ce9bc0538f957257fcd (diff)
Add more details on how to add a new SSL test
Reviewed-by: Stephen Henson <steve@openssl.org>
Diffstat (limited to 'test/recipes')
-rw-r--r--test/recipes/80-test_ssl_new.t6
1 files changed, 5 insertions, 1 deletions
diff --git a/test/recipes/80-test_ssl_new.t b/test/recipes/80-test_ssl_new.t
index 7cd38565ea..09db280146 100644
--- a/test/recipes/80-test_ssl_new.t
+++ b/test/recipes/80-test_ssl_new.t
@@ -44,6 +44,8 @@ my $no_npn = disabled("nextprotoneg");
my $no_ct = disabled("ct");
my $no_ec = disabled("ec");
+# Add your test here if the test conf.in generates test cases and/or
+# expectations dynamically based on the OpenSSL compile-time config.
my %conf_dependent_tests = (
"02-protocol-version.conf" => !$is_default_tls,
"04-client_auth.conf" => !$is_default_tls,
@@ -52,7 +54,9 @@ my %conf_dependent_tests = (
"11-dtls_resumption.conf" => !$is_default_dtls,
);
-# Default is $no_tls but some tests have different skip conditions.
+# Add your test here if it should be skipped for some compile-time
+# configurations. Default is $no_tls but some tests have different skip
+# conditions.
my %skip = (
"07-dtls-protocol-version.conf" => $no_dtls,
"08-npn.conf" => $no_tls || $no_npn,