aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2017-04-07 11:56:27 +0100
committerMatt Caswell <matt@openssl.org>2017-04-07 13:41:04 +0100
commita273157a3e10930b52b30e0ee39552eaf2a56e17 (patch)
tree4809f96fbf3fa54c5b0dc3a7bceda496085f5c76
parent0f5af6b1b854a7086e025f51f1794b179131e61c (diff)
downloadopenssl-a273157a3e10930b52b30e0ee39552eaf2a56e17.tar.gz
Fix a test failure when configured without TLSv1.3
Reviewed-by: Rich Salz <rsalz@openssl.org> (Merged from https://github.com/openssl/openssl/pull/3139)
-rw-r--r--test/sslapitest.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/sslapitest.c b/test/sslapitest.c
index 0e2bdbefaf..3b4d01aab9 100644
--- a/test/sslapitest.c
+++ b/test/sslapitest.c
@@ -2602,7 +2602,11 @@ int test_main(int argc, char *argv[])
ADD_ALL_TESTS(test_early_data_tls1_2, 2);
# endif
#endif
+#ifndef OPENSSL_NO_TLS1_3
ADD_ALL_TESTS(test_custom_exts, 4);
+#else
+ ADD_ALL_TESTS(test_custom_exts, 2);
+#endif
testresult = run_tests(argv[0]);