From patchwork Tue Dec 9 21:01:35 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jason Merrill X-Patchwork-Id: 4130 Received: (qmail 5231 invoked by alias); 9 Dec 2014 21:01:51 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Delivered-To: mailing list gdb-patches@sourceware.org Received: (qmail 5222 invoked by uid 89); 9 Dec 2014 21:01:50 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-3.7 required=5.0 tests=AWL, BAYES_00, SPF_HELO_PASS, T_RP_MATCHES_RCVD autolearn=ham version=3.3.2 X-HELO: mx1.redhat.com Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-GCM-SHA384 encrypted) ESMTPS; Tue, 09 Dec 2014 21:01:40 +0000 Received: from int-mx13.intmail.prod.int.phx2.redhat.com (int-mx13.intmail.prod.int.phx2.redhat.com [10.5.11.26]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id sB9L1cQa017254 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=FAIL) for ; Tue, 9 Dec 2014 16:01:38 -0500 Received: from [10.3.112.78] (ovpn-112-78.phx2.redhat.com [10.3.112.78]) by int-mx13.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id sB9L1aEo025688 for ; Tue, 9 Dec 2014 16:01:37 -0500 Message-ID: <5487632F.8070109@redhat.com> Date: Tue, 09 Dec 2014 16:01:35 -0500 From: Jason Merrill User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.2.0 MIME-Version: 1.0 To: gdb-patches@sourceware.org Subject: [PATCH] Restore check-gdb.% target I found the check-gdb.cp target useful for testing G++, and was sorry to lose it in the change to improve parallel testing. This patch recreates that target using the new testing machinery. Not a big deal if you don't want to make this change, I'll just modify my testing scripts to do the more verbose make check TESTS="gdb.cp/*.exp". But I figured other people might find the short form convenient and/or habitual. commit 105041cc6a1d53cae6753409d2d4a145bef3cb51 Author: Jason Merrill Date: Tue Dec 9 15:50:03 2014 -0500 * Makefile.in (check-gdb.%): Restore. diff --git a/gdb/testsuite/Makefile.in b/gdb/testsuite/Makefile.in index 1c923cd..21a1c12 100644 --- a/gdb/testsuite/Makefile.in +++ b/gdb/testsuite/Makefile.in @@ -188,6 +188,9 @@ DO_RUNTEST = \ @GMAKE_TRUE@endif @GMAKE_FALSE@expanded_tests_or_none = $(TESTS) +check-gdb.%: + $(MAKE) check TESTS="gdb.$*/*.exp" + check-single: $(DO_RUNTEST) $(RUNTESTFLAGS) $(expanded_tests_or_none)