From 93026bb74a9f942ea7b87dd3316996c7492a954f Mon Sep 17 00:00:00 2001 From: tb <> Date: Fri, 2 Dec 2022 08:30:54 +0000 Subject: 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. --- src/regress/lib/libcrypto/bn/Makefile | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) (limited to 'src') 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 @@ -# $OpenBSD: Makefile,v 1.13 2022/12/02 00:55:57 tb Exp $ +# $OpenBSD: Makefile,v 1.14 2022/12/02 08:30:54 tb Exp $ PROGS += bn_add_sub PROGS += bn_cmp @@ -24,8 +24,13 @@ WARNINGS = Yes CFLAGS += -Wall -Wundef -Werror CFLAGS += -I${.CURDIR}/../../../../lib/libcrypto/bn/ -# Use default targets from bsd.regress.mk where possible. -REGRESS_TARGETS = ${PROGS:S/^/run-regress-/} +.for p in ${PROGS} +REGRESS_TARGETS += run-$p +.PHONY: run-$p + +run-$p: $p + ./$p +.endfor # Verify that the bn_isqrt -C output isn't changed by accident. isqrt-print-tables: bn_isqrt -- cgit v1.2.3-55-g6feb