From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from ffbox0-bg.mplayerhq.hu (ffbox0-bg.ffmpeg.org [79.124.17.100]) by master.gitmailbox.com (Postfix) with ESMTP id 98207498BF for ; Wed, 21 Feb 2024 08:56:10 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 7ECAB68D155; Wed, 21 Feb 2024 10:56:07 +0200 (EET) Received: from mail8.parnet.fi (mail8.parnet.fi [77.234.108.134]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id 172E868D089 for ; Wed, 21 Feb 2024 10:56:00 +0200 (EET) Received: from mail9.parnet.fi (mail9.parnet.fi [77.234.108.21]) by mail8.parnet.fi with ESMTP id 41L8twaX018551-41L8twaY018551 for ; Wed, 21 Feb 2024 10:55:59 +0200 Received: from cone.home.martin.st (host-97-144.parnet.fi [77.234.97.144]) by mail9.parnet.fi (Postfix) with ESMTPS id EB269A14A7 for ; Wed, 21 Feb 2024 10:55:58 +0200 (EET) Date: Wed, 21 Feb 2024 10:55:58 +0200 (EET) From: =?ISO-8859-15?Q?Martin_Storsj=F6?= To: ffmpeg-devel@ffmpeg.org In-Reply-To: <20240214134802.43623-1-martin@martin.st> Message-ID: <8381e0d3-fdae-1d33-6f0-ef248d8be81@martin.st> References: <20240214134802.43623-1-martin@martin.st> MIME-Version: 1.0 X-FE-Policy-ID: 3:14:2:SYSTEM X-Content-Filtered-By: Mailman/MimeDel 2.1.29 Subject: Re: [FFmpeg-devel] [PATCH] checkasm: Add a "run-checkasm" make target X-BeenThere: ffmpeg-devel@ffmpeg.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: FFmpeg development discussions and patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: FFmpeg development discussions and patches Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="iso-8859-15"; Format="flowed" Errors-To: ffmpeg-devel-bounces@ffmpeg.org Sender: "ffmpeg-devel" Archived-At: List-Archive: List-Post: On Wed, 14 Feb 2024, Martin Storsj=F6 wrote: > Contrary to the existing "fate-checkasm", this always prints the > tool output, and runs all tests at once instead of splitting it up > per target group. This is more useful when the user expects to > look directly at the tool output, instead of being part of a full > fate run. > > (On failure with the regular "make fate-checkasm" targets, none of > the tool output is printed, but stored in files. If run with reporting > set up to the FATE website, the individual failures are uploaded there, > but if it is run in some sort of other CI setup, the intermediate files > might not be available afterwards for inspection.) > --- > tests/checkasm/Makefile | 4 ++++ > 1 file changed, 4 insertions(+) > > diff --git a/tests/checkasm/Makefile b/tests/checkasm/Makefile > index 3562acb2b2..3af42a679b 100644 > --- a/tests/checkasm/Makefile > +++ b/tests/checkasm/Makefile > @@ -91,6 +91,10 @@ CHECKASM :=3D tests/checkasm/checkasm$(EXESUF) > $(CHECKASM): $(CHECKASMOBJS) $(FF_STATIC_DEP_LIBS) > $(LD) $(LDFLAGS) $(LDEXEFLAGS) $(LD_O) $(CHECKASMOBJS) $(FF_STATIC_DEP_L= IBS) $(EXTRALIBS-avcodec) $(EXTRALIBS-avfilter) $(EXTRALIBS-avformat) $(EXT= RALIBS-avutil) $(EXTRALIBS-swresample) $(EXTRALIBS) > > +run-checkasm: $(CHECKASM) > +run-checkasm: > + $(TARGET_EXEC) $(TARGET_PATH)/$(CHECKASM) I've amended this locally with a $(Q) at the start, to silence the = executed command, unless executed with V=3D1. I'll push this patch later today if there aren't any objections. // Martin _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".