From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 8BF17EE49AB for ; Wed, 23 Aug 2023 06:53:07 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S233038AbjHWGxH (ORCPT ); Wed, 23 Aug 2023 02:53:07 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:36114 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231283AbjHWGxG (ORCPT ); Wed, 23 Aug 2023 02:53:06 -0400 Received: from mx.mylinuxtime.de (mx.mylinuxtime.de [88.99.235.251]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 074F4C7 for ; Tue, 22 Aug 2023 23:53:04 -0700 (PDT) Received: from leda.eworm.de (unknown [194.36.25.21]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by mx.mylinuxtime.de (Postfix) with ESMTPSA id 65C732332B5; Wed, 23 Aug 2023 08:53:02 +0200 (CEST) Received: by leda.eworm.de (Postfix, from userid 1000) id EA8C51811D9; Wed, 23 Aug 2023 08:53:01 +0200 (CEST) From: Christian Hesse To: Git Mailing List Cc: Kousik Sanagavarapu , Christian Couder , Hariom Verma , Junio C Hamano , Eric Sunshine , Christian Hesse Subject: [PATCH v2 2/2] t/t6300: drop magic filtering Date: Wed, 23 Aug 2023 08:52:17 +0200 Message-ID: <20230823065300.21961-1-list@eworm.de> X-Mailer: git-send-email 2.42.0 In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: git@vger.kernel.org From: Christian Hesse Now that we ran a trustdb check forcibly it does no longer pollute the output. Filtering is no longer required... Signed-off-by: Christian Hesse --- t/t6300-for-each-ref.sh | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/t/t6300-for-each-ref.sh b/t/t6300-for-each-ref.sh index 5b434ab451..aa3c7c03c4 100755 --- a/t/t6300-for-each-ref.sh +++ b/t/t6300-for-each-ref.sh @@ -1763,10 +1763,7 @@ test_expect_success GPGSSH 'setup for signature atom using ssh' ' ' test_expect_success GPG2 'bare signature atom' ' - git verify-commit first-signed 2>out.raw && - grep -Ev "checking the trustdb|PGP trust model" out.raw >out && - head -3 out >expect && - tail -1 out >>expect && + git verify-commit first-signed 2>expect && echo >>expect && git for-each-ref refs/tags/first-signed \ --format="%(signature)" >actual && -- 2.42.0