diff options
author | tb <> | 2023-05-24 08:54:59 +0000 |
---|---|---|
committer | tb <> | 2023-05-24 08:54:59 +0000 |
commit | 61c81a83de1329c6eec47a61f17e68b7c5a335f9 (patch) | |
tree | 4af95fd970f26f3389693ed73c570d428a1f9675 /src/regress/lib/libssl/unit/Makefile | |
parent | 6ba3c246f09904342136fa7405a22d78b3db14ae (diff) | |
download | openbsd-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/Makefile | 7 |
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 | ||
3 | PROGS += cipher_list | 3 | PROGS += cipher_list |
4 | PROGS += ssl_get_shared_ciphers | 4 | PROGS += ssl_get_shared_ciphers |
5 | PROGS += ssl_methods | 5 | PROGS += ssl_methods |
6 | PROGS += ssl_set_alpn_protos | 6 | PROGS += ssl_set_alpn_protos |
7 | PROGS += ssl_verify_param | ||
7 | PROGS += ssl_versions | 8 | PROGS += ssl_versions |
8 | PROGS += tls_ext_alpn | 9 | PROGS += tls_ext_alpn |
9 | PROGS += tls_prf | 10 | PROGS += tls_prf |
@@ -15,4 +16,8 @@ CFLAGS+= -DLIBRESSL_INTERNAL -Wall -Wundef -Werror | |||
15 | CFLAGS+= -DCERTSDIR=\"${.CURDIR}/../certs\" | 16 | CFLAGS+= -DCERTSDIR=\"${.CURDIR}/../certs\" |
16 | CFLAGS+= -I${.CURDIR}/../../../../lib/libssl | 17 | CFLAGS+= -I${.CURDIR}/../../../../lib/libssl |
17 | 18 | ||
19 | LDADD_ssl_verify_param = ${LIBSSL} ${CRYPTO_INT} | ||
20 | |||
21 | REGRESS_EXPECTED_FAILURES+= run-regress-ssl_verify_param | ||
22 | |||
18 | .include <bsd.regress.mk> | 23 | .include <bsd.regress.mk> |