diff options
author | 2020-05-23 17:33:51 +0000 | |
---|---|---|
committer | 2020-05-23 17:33:51 +0000 | |
commit | aeb4200e0dba4d44b8d8315fec719ac89463d016 (patch) | |
tree | 1d262610b3a0c6f4aafd0eefd528d2f82f395928 /regress/lib/libssl/tlsfuzzer | |
parent | Enforce that SNI hostnames be correct as per rfc 6066 and 5980. (diff) | |
download | wireguard-openbsd-aeb4200e0dba4d44b8d8315fec719ac89463d016.tar.xz wireguard-openbsd-aeb4200e0dba4d44b8d8315fec719ac89463d016.zip |
Define REGRESS_TARGETS explicitly.
Diffstat (limited to 'regress/lib/libssl/tlsfuzzer')
-rw-r--r-- | regress/lib/libssl/tlsfuzzer/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/regress/lib/libssl/tlsfuzzer/Makefile b/regress/lib/libssl/tlsfuzzer/Makefile index 224fc96c5c7..64c5970a279 100644 --- a/regress/lib/libssl/tlsfuzzer/Makefile +++ b/regress/lib/libssl/tlsfuzzer/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.1 2020/05/21 10:38:43 tb Exp $ +# $OpenBSD: Makefile,v 1.2 2020/05/23 17:33:51 tb Exp $ .if !exists(/usr/local/share/tlsfuzzer) regress: @@ -6,6 +6,8 @@ regress: @echo SKIPPED .else +REGRESS_TARGETS=regress-tlsfuzzer + localhost.key localhost.crt: openssl req -x509 -newkey rsa -keyout localhost.key -out localhost.crt \ -subj /CN=localhost -nodes -batch @@ -19,7 +21,7 @@ SLOW = -s TIMING = # -t VERBOSE = # -v -all: certs +regress-tlsfuzzer: certs python3 ${.CURDIR}/tlsfuzzer.py ${SLOW} ${TIMING} ${VERBOSE} failing: certs |