summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authortb <>2022-12-02 08:30:54 +0000
committertb <>2022-12-02 08:30:54 +0000
commit93026bb74a9f942ea7b87dd3316996c7492a954f (patch)
treeca1afab3bc6669b79a90c168e25e04d8e056c067 /src
parentcd7ab4d8ce31d3f14428156bbcdc5923a4ae6cf3 (diff)
downloadopenbsd-93026bb74a9f942ea7b87dd3316996c7492a954f.tar.gz
openbsd-93026bb74a9f942ea7b87dd3316996c7492a954f.tar.bz2
openbsd-93026bb74a9f942ea7b87dd3316996c7492a954f.zip
libcrypto/bn: switch back to manual regress targets
The previous change had the undesired side effect of running the super verbose run-regress-bn_test.
Diffstat (limited to 'src')
-rw-r--r--src/regress/lib/libcrypto/bn/Makefile11
1 files changed, 8 insertions, 3 deletions
diff --git a/src/regress/lib/libcrypto/bn/Makefile b/src/regress/lib/libcrypto/bn/Makefile
index 8d5be68a93..f3f98a31eb 100644
--- a/src/regress/lib/libcrypto/bn/Makefile
+++ b/src/regress/lib/libcrypto/bn/Makefile
@@ -1,4 +1,4 @@
1# $OpenBSD: Makefile,v 1.13 2022/12/02 00:55:57 tb Exp $ 1# $OpenBSD: Makefile,v 1.14 2022/12/02 08:30:54 tb Exp $
2 2
3PROGS += bn_add_sub 3PROGS += bn_add_sub
4PROGS += bn_cmp 4PROGS += bn_cmp
@@ -24,8 +24,13 @@ WARNINGS = Yes
24CFLAGS += -Wall -Wundef -Werror 24CFLAGS += -Wall -Wundef -Werror
25CFLAGS += -I${.CURDIR}/../../../../lib/libcrypto/bn/ 25CFLAGS += -I${.CURDIR}/../../../../lib/libcrypto/bn/
26 26
27# Use default targets from bsd.regress.mk where possible. 27.for p in ${PROGS}
28REGRESS_TARGETS = ${PROGS:S/^/run-regress-/} 28REGRESS_TARGETS += run-$p
29.PHONY: run-$p
30
31run-$p: $p
32 ./$p
33.endfor
29 34
30# Verify that the bn_isqrt -C output isn't changed by accident. 35# Verify that the bn_isqrt -C output isn't changed by accident.
31isqrt-print-tables: bn_isqrt 36isqrt-print-tables: bn_isqrt