From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) by sourceware.org (Postfix) with ESMTP id 615843856DEA for ; Sun, 23 Oct 2022 20:59:16 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 615843856DEA Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=gentoo.org Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=gentoo.org Received: by smtp.gentoo.org (Postfix, from userid 559) id 10A62341029; Sun, 23 Oct 2022 20:59:16 +0000 (UTC) From: Mike Frysinger To: gdb-patches@sourceware.org Subject: [PATCH] sim: testsuite: update ignored .exp files [PR sim/29596] Date: Mon, 24 Oct 2022 01:29:48 +0545 Message-Id: <20221023194448.23737-1-vapier@gentoo.org> X-Mailer: git-send-email 2.37.3 In-Reply-To: <20221023191654.28740-1-vapier@gentoo.org> References: <20221023191654.28740-1-vapier@gentoo.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-11.1 required=5.0 tests=BAYES_00,GIT_PATCH_0,JMQ_SPF_NEUTRAL,KAM_DMARC_STATUS,RCVD_IN_MSPIKE_H3,RCVD_IN_MSPIKE_WL,SPF_HELO_PASS,SPF_PASS,TXREP autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: Now that we run `check/foo.exp` instead of `check/./foo.exp`, update the config/ & lib/ exceptions to cover both paths. Bug: https://sourceware.org/PR29596 --- sim/Makefile.in | 2 ++ sim/testsuite/local.mk | 2 ++ 2 files changed, 4 insertions(+) diff --git a/sim/testsuite/local.mk b/sim/testsuite/local.mk index e55f8c3c8b22..b8114a565997 100644 --- a/sim/testsuite/local.mk +++ b/sim/testsuite/local.mk @@ -40,7 +40,9 @@ DO_RUNTEST = \ # Ignore dirs that only contain configuration settings. check/./config/%.exp: ; @true +check/config/%.exp: ; @true check/./lib/%.exp: ; @true +check/lib/%.exp: ; @true check/%.exp: $(AM_V_at)mkdir -p testsuite/$* -- 2.37.3