summaryrefslogtreecommitdiff
path: root/src/regress/lib/libssl/unit/Makefile
diff options
context:
space:
mode:
authortb <>2023-05-24 08:54:59 +0000
committertb <>2023-05-24 08:54:59 +0000
commit61c81a83de1329c6eec47a61f17e68b7c5a335f9 (patch)
tree4af95fd970f26f3389693ed73c570d428a1f9675 /src/regress/lib/libssl/unit/Makefile
parent6ba3c246f09904342136fa7405a22d78b3db14ae (diff)
downloadopenbsd-61c81a83de1329c6eec47a61f17e68b7c5a335f9.tar.gz
openbsd-61c81a83de1329c6eec47a61f17e68b7c5a335f9.tar.bz2
openbsd-61c81a83de1329c6eec47a61f17e68b7c5a335f9.zip
Add a test to verify that an SSL inherits the hostflags from the SSL_CTX
This is currently an expected failure that will be fixed shortly.
Diffstat (limited to 'src/regress/lib/libssl/unit/Makefile')
-rw-r--r--src/regress/lib/libssl/unit/Makefile7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/regress/lib/libssl/unit/Makefile b/src/regress/lib/libssl/unit/Makefile
index 191aadf2bb..413307b7a0 100644
--- a/src/regress/lib/libssl/unit/Makefile
+++ b/src/regress/lib/libssl/unit/Makefile
@@ -1,9 +1,10 @@
1# $OpenBSD: Makefile,v 1.14 2022/12/02 01:15:11 tb Exp $ 1# $OpenBSD: Makefile,v 1.15 2023/05/24 08:54:59 tb Exp $
2 2
3PROGS += cipher_list 3PROGS += cipher_list
4PROGS += ssl_get_shared_ciphers 4PROGS += ssl_get_shared_ciphers
5PROGS += ssl_methods 5PROGS += ssl_methods
6PROGS += ssl_set_alpn_protos 6PROGS += ssl_set_alpn_protos
7PROGS += ssl_verify_param
7PROGS += ssl_versions 8PROGS += ssl_versions
8PROGS += tls_ext_alpn 9PROGS += tls_ext_alpn
9PROGS += tls_prf 10PROGS += tls_prf
@@ -15,4 +16,8 @@ CFLAGS+= -DLIBRESSL_INTERNAL -Wall -Wundef -Werror
15CFLAGS+= -DCERTSDIR=\"${.CURDIR}/../certs\" 16CFLAGS+= -DCERTSDIR=\"${.CURDIR}/../certs\"
16CFLAGS+= -I${.CURDIR}/../../../../lib/libssl 17CFLAGS+= -I${.CURDIR}/../../../../lib/libssl
17 18
19LDADD_ssl_verify_param = ${LIBSSL} ${CRYPTO_INT}
20
21REGRESS_EXPECTED_FAILURES+= run-regress-ssl_verify_param
22
18.include <bsd.regress.mk> 23.include <bsd.regress.mk>