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
commit66b0d4ab48cd1eed29fcbe7a4e84ff817b73ba8d (patch)
treeca1afab3bc6669b79a90c168e25e04d8e056c067 /src
parent2288cbbd8750bb9ffbf16c21d2294bce7e4e601f (diff)
downloadopenbsd-66b0d4ab48cd1eed29fcbe7a4e84ff817b73ba8d.tar.gz
openbsd-66b0d4ab48cd1eed29fcbe7a4e84ff817b73ba8d.tar.bz2
openbsd-66b0d4ab48cd1eed29fcbe7a4e84ff817b73ba8d.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