From: jsing Date: Fri, 24 Dec 2021 08:31:55 +0000 (+0000) Subject: Print the name of the test before we run it. X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=6398ceab0193ba9fb9a1260f3e477f0fef7a99b9;p=openbsd Print the name of the test before we run it. --- diff --git a/regress/lib/libcrypto/asn1/Makefile b/regress/lib/libcrypto/asn1/Makefile index 7540aeb4475..ce49c0a9c0d 100644 --- a/regress/lib/libcrypto/asn1/Makefile +++ b/regress/lib/libcrypto/asn1/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.11 2021/12/14 17:07:57 jsing Exp $ +# $OpenBSD: Makefile,v 1.12 2021/12/24 08:31:55 jsing Exp $ TESTS = \ asn1api \ @@ -23,6 +23,7 @@ CFLAGS+= -DLIBRESSL_INTERNAL -Wall -Wundef -Werror all_tests: ${TESTS} @for test in $>; do \ + echo "\n======== $$test ========"; \ ./$$test; \ done