From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: AS3215 2.6.0.0/16 X-Spam-Status: No, score=-3.9 required=3.0 tests=AWL,BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,RCVD_IN_DNSWL_HI, SPF_HELO_NONE,SPF_PASS shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from out1.vger.email (out1.vger.email [IPv6:2620:137:e000::1:20]) by dcvr.yhbt.net (Postfix) with ESMTP id 41FB71F506 for ; Thu, 22 Sep 2022 19:01:55 +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