From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from simark.ca by simark.ca with LMTP id OGX2OjmrVWPo1Q8AWB0awg (envelope-from ) for ; Sun, 23 Oct 2022 16:59:37 -0400 Received: by simark.ca (Postfix, from userid 112) id E52BD1E112; Sun, 23 Oct 2022 16:59:37 -0400 (EDT) Authentication-Results: simark.ca; dkim=pass (1024-bit key; secure) header.d=sourceware.org header.i=@sourceware.org header.a=rsa-sha256 header.s=default header.b=ffSq2rPd; dkim-atps=neutral X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on simark.ca X-Spam-Level: X-Spam-Status: No, score=-3.0 required=5.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,MAILING_LIST_MULTI,URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.6 Received: from sourceware.org (server2.sourceware.org [8.43.85.97]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by simark.ca (Postfix) with ESMTPS id 889FC1E0D3 for ; Sun, 23 Oct 2022 16:59:37 -0400 (EDT) Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id CA926385615C for ; Sun, 23 Oct 2022 20:59:35 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org CA926385615C DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1666558775; bh=EDoOC+Q4cL7CSPP48fvjg9CAKb9UbOQGjpzGk6WfnXk=; h=To:Subject:Date:In-Reply-To:References:List-Id:List-Unsubscribe: List-Archive:List-Post:List-Help:List-Subscribe:From:Reply-To: From; b=ffSq2rPdZlaw/MuwsvmnqqZifmltcdQ2j1tA1tr5oRC4d+IKGIBQpKxk2jOY0hR0y Vj3HymfmO1BoijwMZmJgxupBf6vh+aHM7Ai3CnOc9sxbanwuuOBMDEzBRIrY+KzaqF 2UrFFbaGeROVOUm6NAK/Qz7o+30FWNCbIq4ZPGTI= 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 Received: by smtp.gentoo.org (Postfix, from userid 559) id 10A62341029; Sun, 23 Oct 2022 20:59:16 +0000 (UTC) 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-BeenThere: gdb-patches@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gdb-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , From: Mike Frysinger via Gdb-patches Reply-To: Mike Frysinger Errors-To: gdb-patches-bounces+public-inbox=simark.ca@sourceware.org Sender: "Gdb-patches" 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