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 951C8ECAAD8 for ; Thu, 22 Sep 2022 19:01:52 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230504AbiIVTBu (ORCPT ); Thu, 22 Sep 2022 15:01:50 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:41450 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229631AbiIVTBr (ORCPT ); Thu, 22 Sep 2022 15:01:47 -0400 Received: from elephants.elehost.com (elephants.elehost.com [216.66.27.132]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 4CCFBF3F9C for ; Thu, 22 Sep 2022 12:01:46 -0700 (PDT) Received: from Mazikeen (cpebc4dfb928313-cmbc4dfb928310.cpe.net.cable.rogers.com [99.228.251.108] (may be forged)) (authenticated bits=0) by elephants.elehost.com (8.16.1/8.16.1) with ESMTPSA id 28MJ1j9u070997 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO) for ; Thu, 22 Sep 2022 15:01:45 -0400 (EDT) (envelope-from rsbecker@nexbridge.com) Reply-To: From: To: Subject: [BUG] Git 2.28.0-rc1 t1800 message text comparison Date: Thu, 22 Sep 2022 15:01:40 -0400 Organization: Nexbridge Inc. Message-ID: <022e01d8ceb5$c2da52c0$488ef840$@nexbridge.com> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Mailer: Microsoft Outlook 16.0 Thread-Index: AdjOtb96B9sxjbkJT1eCRhREjcMwKA== Content-Language: en-ca Precedence: bulk List-ID: X-Mailing-List: git@vger.kernel.org Rc1 is looking good except for this test. We get a diff as follows: -fatal: cannot run bad-hooks/test-hook: ... +fatal: cannot exec 'bad-hooks/test-hook': Permission denied It looks like the pattern sed -e s/test-hook: .*/test-hook: .../ needs to be a bit extended. Adding sed -e s/exec/run/ | send -e s/["']//g might help clear off the other noise. Regards, Randall