summaryrefslogtreecommitdiff
path: root/src/regress/lib/libcrypto/bn/Makefile
diff options
context:
space:
mode:
authorjsing <>2022-11-30 02:51:05 +0000
committerjsing <>2022-11-30 02:51:05 +0000
commit0023b74fffd159a8c3a8ffb3cee4ff84ef2e9df7 (patch)
tree22a5d3e925c810696b7992b42d028c029cd42419 /src/regress/lib/libcrypto/bn/Makefile
parent91315cb3be072462af759c6d8f63e0611eacd0e2 (diff)
downloadopenbsd-0023b74fffd159a8c3a8ffb3cee4ff84ef2e9df7.tar.gz
openbsd-0023b74fffd159a8c3a8ffb3cee4ff84ef2e9df7.tar.bz2
openbsd-0023b74fffd159a8c3a8ffb3cee4ff84ef2e9df7.zip
Add regress coverage for BN_cmp()/BN_ucmp().
Some tests current fail due to a bug in BN_ucmp(), which will be fixed soon.
Diffstat (limited to 'src/regress/lib/libcrypto/bn/Makefile')
-rw-r--r--src/regress/lib/libcrypto/bn/Makefile14
1 files changed, 11 insertions, 3 deletions
diff --git a/src/regress/lib/libcrypto/bn/Makefile b/src/regress/lib/libcrypto/bn/Makefile
index ed9298575b..89c8d7861a 100644
--- a/src/regress/lib/libcrypto/bn/Makefile
+++ b/src/regress/lib/libcrypto/bn/Makefile
@@ -1,4 +1,4 @@
1# $OpenBSD: Makefile,v 1.6 2018/11/06 06:56:17 tb Exp $ 1# $OpenBSD: Makefile,v 1.7 2022/11/30 02:51:05 jsing Exp $
2 2
3SUBDIR= \ 3SUBDIR= \
4 addsub \ 4 addsub \
@@ -6,7 +6,15 @@ SUBDIR= \
6 mont \ 6 mont \
7 rand 7 rand
8 8
9PROGS+= bn_cmp
9 10
10install: 11LDADD= -lcrypto
12DPADD= ${LIBCRYPTO}
13WARNINGS= Yes
14CFLAGS+= -Wall -Wundef -Werror
11 15
12.include <bsd.subdir.mk> 16REGRESS_TARGETS += run-bn_cmp
17run-bn_cmp: bn_cmp
18 ./bn_cmp
19
20.include <bsd.regress.mk>