From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wr1-x444.google.com (mail-wr1-x444.google.com [IPv6:2a00:1450:4864:20::444]) by sourceware.org (Postfix) with ESMTPS id E74393836C52; Mon, 30 Nov 2020 12:48:35 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org E74393836C52 Received: by mail-wr1-x444.google.com with SMTP id k14so16062956wrn.1; Mon, 30 Nov 2020 04:48:35 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc:content-transfer-encoding; bh=r8t7VhXSiUEo1AgTxSGWxTJ9r8gBlNkODlMAOA1XEqA=; b=JiOCr21NQiHxhIXF+n03TMwcCU/05F99ZffcqBkgdJduTTdURAyrNY39x5ONvTF5Oc zyrdLBJOMlilURa9nwJUUFtAW09j0cSmjj05CssiW1u+5K7rTvuZvuEWTMgBN3ZR3OBR +iUd3ZPZKGfIFhZVYKgoYaObR0AQ1BwlX1yxMpIUkXBhJiYyk9/og5hhB3gQLKXxhUD9 SsmFNvnydDbTm7pWZt3xSC5SRL2dYS9BdCpG6JuNb569zSr/7Jf63xpc4KL57jJYkGnd wqhFQxi9cjt9aQLxVxclXonOy76Xr85Z4GZFJ6W4NA/Q8xkSNwaa42L2Yu1Heh09e/oz SOCw== X-Gm-Message-State: AOAM532tDOzOOr66B9dUFLTXIi7W7+aOu8yMChvPqVF478WJj4q5dtyi jNof8014OLTLFgW8SQLgHoFjuQNowTkc1ZU8d2g= X-Google-Smtp-Source: ABdhPJyGQx5QNhHaMzX60fvW8OFUjZgjDqhLZ53yqnoUYSMuvfTqFO7l0iS+X4h1FIOOqJYJdCMNClfPA68xeaNrHUE= X-Received: by 2002:a05:6000:1cf:: with SMTP id t15mr27306494wrx.321.1606740515021; Mon, 30 Nov 2020 04:48:35 -0800 (PST) MIME-Version: 1.0 References: <20201127162354.GA2308844@redhat.com> <96a940e8-8411-0c25-f1ba-8b6c4dc9b13b@suse.cz> In-Reply-To: From: Jonathan Wakely Date: Mon, 30 Nov 2020 12:48:23 +0000 Message-ID: Subject: Re: [PATCH] gcc-changelog: Add libstdc++-v3/testsuite to wildcard prefixes To: =?UTF-8?Q?Martin_Li=C5=A1ka?= Cc: Jonathan Wakely , "libstdc++" , gcc-patches Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Spam-Status: No, score=-0.7 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, FREEMAIL_FROM, RCVD_IN_DNSWL_NONE, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org X-BeenThere: gcc-patches@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Nov 2020 12:48:37 -0000 On Mon, 30 Nov 2020 at 12:43, Martin Li=C5=A1ka wrote: > > On 11/30/20 1:23 PM, Jonathan Wakely wrote: > > On Mon, 30 Nov 2020 at 12:14, Martin Li=C5=A1ka wrote: > >> > >> On 11/30/20 12:58 PM, Jonathan Wakely wrote: > >>> I can have a commit which only uses wildcards now, thanks. > >> > >> Good! > >> > >>> > >>> I still can't use sub-directories with wildcards, but I can live with= that. > >> > >> Why? The example I presented did so: > >> > >> libstdc++-v3/ChangeLog: > >> * doc/html/*: All you need is love. > >> > >> and I modified the following file: > >> libstdc++-v3/doc/html/manual/debug.html | 3 ++- > >> > >> Isn't that a sub-directory? > > > > But libstdc++/doc/html is the entry in the wildcard_prefixes list. > > What I mean is using a sub-directory in the changelog: > > > > * doc/html/manual/*: Love is all you need. > > > > The use case is for subsets of the testsuite. I've added > > libstdc++-v3/testsuite to the wildcard_prefixes, which means I can now > > do this: > > > > * testsuite/*: Update all 28_regex tests. > > > > But I would like to do this: > > > > * testsuite/28_regex/*: Update all tests. > > Ahh, got it. Fix with the attached patch I've just pushed. > > Hope it's fine now? Yes, this is perfect, thanks!