From 7c876ae3555c14d996597b09f2571713961f217f Mon Sep 17 00:00:00 2001 From: tb Date: Fri, 2 Dec 2022 08:30:54 +0000 Subject: [PATCH] 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. --- regress/lib/libcrypto/bn/Makefile | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/regress/lib/libcrypto/bn/Makefile b/regress/lib/libcrypto/bn/Makefile index 8d5be68a936..f3f98a31eb4 100644 --- a/regress/lib/libcrypto/bn/Makefile +++ b/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 -- 2.20.1