summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorbluhm <>2019-05-14 05:48:58 +0000
committerbluhm <>2019-05-14 05:48:58 +0000
commite5c91b949e0eaacab243f26b39804cf6163a2ac2 (patch)
treed54ccf319c551ba42c218129fc40d5e510ec72d5 /src
parenta3d0d38491040ac80d200d52e9800c9d213457c2 (diff)
downloadopenbsd-e5c91b949e0eaacab243f26b39804cf6163a2ac2.tar.gz
openbsd-e5c91b949e0eaacab243f26b39804cf6163a2ac2.tar.bz2
openbsd-e5c91b949e0eaacab243f26b39804cf6163a2ac2.zip
Use propper regress target to integrate better into test framework.
Diffstat (limited to 'src')
-rw-r--r--src/regress/lib/libcrypto/botan/Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/regress/lib/libcrypto/botan/Makefile b/src/regress/lib/libcrypto/botan/Makefile
index 9aa3f2ef57..416b0f7081 100644
--- a/src/regress/lib/libcrypto/botan/Makefile
+++ b/src/regress/lib/libcrypto/botan/Makefile
@@ -1,8 +1,9 @@
1# $OpenBSD: Makefile,v 1.1 2018/11/09 23:44:32 bluhm Exp $ 1# $OpenBSD: Makefile,v 1.2 2019/05/14 05:48:58 bluhm Exp $
2 2
3.if ! exists(/usr/local/bin/botan-test) 3.if ! exists(/usr/local/bin/botan-test)
4regress: 4regress:
5 # install botan2 from ports for botan tests with libressl provider 5 # install botan2 from ports for botan tests with libressl provider
6 # pkg_add botan2
6 @echo SKIPPED 7 @echo SKIPPED
7.endif 8.endif
8 9
@@ -13,7 +14,8 @@ regress:
13# Even if provider openssl is specified, botan-test runs a lot of 14# Even if provider openssl is specified, botan-test runs a lot of
14# non-openssl tests. This can be improved later. 15# non-openssl tests. This can be improved later.
15 16
16regress: 17REGRESS_TARGETS= run-regress
18run-regress:
17 /usr/local/bin/botan-test --provider=openssl 19 /usr/local/bin/botan-test --provider=openssl
18 20
19.include <bsd.regress.mk> 21.include <bsd.regress.mk>