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: AS53758 23.128.96.0/24 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_PASS,SPF_PASS shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by dcvr.yhbt.net (Postfix) with ESMTP id C4BD91F5AE for ; Mon, 3 May 2021 20:32:24 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229577AbhECUdO (ORCPT ); Mon, 3 May 2021 16:33:14 -0400 Received: from cloud.peff.net ([104.130.231.41]:43484 "EHLO cloud.peff.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229472AbhECUdN (ORCPT ); Mon, 3 May 2021 16:33:13 -0400 Received: (qmail 7449 invoked by uid 109); 3 May 2021 20:32:19 -0000 Received: from Unknown (HELO peff.net) (10.0.1.2) by cloud.peff.net (qpsmtpd/0.94) with ESMTP; Mon, 03 May 2021 20:32:19 +0000 Authentication-Results: cloud.peff.net; auth=none Received: (qmail 7241 invoked by uid 111); 3 May 2021 20:32:20 -0000 Received: from coredump.intra.peff.net (HELO sigill.intra.peff.net) (10.0.0.2) by peff.net (qpsmtpd/0.94) with (TLS_AES_256_GCM_SHA384 encrypted) ESMTPS; Mon, 03 May 2021 16:32:20 -0400 Authentication-Results: peff.net; auth=none Date: Mon, 3 May 2021 16:32:18 -0400 From: Jeff King To: =?utf-8?B?w4Z2YXIgQXJuZmrDtnLDsA==?= Bjarmason Cc: git@vger.kernel.org Subject: Re: [PATCH 5/9] t7450: test verify_path() handling of gitmodules Message-ID: References: <871raoxh09.fsf@evledraar.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <871raoxh09.fsf@evledraar.gmail.com> Precedence: bulk List-ID: X-Mailing-List: git@vger.kernel.org On Mon, May 03, 2021 at 12:12:32PM +0200, Ævar Arnfjörð Bjarmason wrote: > > On Sat, May 01 2021, Jeff King wrote: > > > +test_expect_success 'refuse to load symlinked .gitmodules into index' ' > > + test_must_fail git -C symlink read-tree $tree 2>err && > > + test_i18ngrep "invalid path.*gitmodules" err && > > + git -C symlink ls-files >out && > > + test_must_be_empty out > > +' > > + > > In 1/9 a test_i18ngrep is removed, but here's a new one. Thanks. Most of these patches were written either in 2018 or 2020 and pulled forward (and back then, this call would have been necessary). I fixed up a few cases as I was rebasing, but obviously missed this one. -Peff