From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 7089 invoked by alias); 6 Oct 2014 18:04:46 -0000 Mailing-List: contact jit-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Subscribe: Sender: jit-owner@gcc.gnu.org Received: (qmail 7067 invoked by uid 89); 6 Oct 2014 18:04:45 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Checked: by ClamAV 0.98.4 on sourceware.org X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.1 required=5.0 tests=AWL,BAYES_00,SPF_HELO_PASS,SPF_PASS,T_RP_MATCHES_RCVD autolearn=ham version=3.3.2 X-Spam-Status: No, score=-2.1 required=5.0 tests=AWL,BAYES_00,SPF_HELO_PASS,SPF_PASS,T_RP_MATCHES_RCVD autolearn=ham version=3.3.2 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on sourceware.org X-Spam-Level: X-Spam-User: qpsmtpd, 2 recipients X-HELO: mx1.redhat.com From: David Malcolm To: jit@gcc.gnu.org, gcc-patches@gcc.gnu.org Cc: David Malcolm Subject: [jit] Fix "make check-jit" Date: Wed, 01 Jan 2014 00:00:00 -0000 Message-Id: <1412618451-15952-1-git-send-email-dmalcolm@redhat.com> X-Scanned-By: MIMEDefang 2.68 on 10.5.11.22 X-SW-Source: 2014-q4/txt/msg00003.txt.bz2 Committed to branch dmalcolm/jit: gcc/jit/ChangeLog.jit: * Make-lang.in (lang_checks): Append "check-jit". * docs/internals/index.rst (Running the test suite): Use "check-jit" rather than "check-parallel-jit". --- gcc/jit/Make-lang.in | 2 ++ gcc/jit/docs/internals/index.rst | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/gcc/jit/Make-lang.in b/gcc/jit/Make-lang.in index e79d5d0..666a92b 100644 --- a/gcc/jit/Make-lang.in +++ b/gcc/jit/Make-lang.in @@ -236,6 +236,8 @@ jit.man: jit.srcman: +lang_checks += check-jit + # # Install hooks: jit.install-common: installdirs diff --git a/gcc/jit/docs/internals/index.rst b/gcc/jit/docs/internals/index.rst index c8b05e0..9765862 100644 --- a/gcc/jit/docs/internals/index.rst +++ b/gcc/jit/docs/internals/index.rst @@ -36,7 +36,7 @@ Running the test suite .. code-block:: console [build] $ cd gcc - [gcc] $ make check-parallel-jit RUNTESTFLAGS="-v -v -v" + [gcc] $ make check-jit RUNTESTFLAGS="-v -v -v" A summary of the tests can then be seen in: @@ -62,7 +62,7 @@ You can compile and run individual tests by passing "jit.exp=TESTNAME" to RUNTES .. code-block:: console - [gcc] $ make check-parallel-jit RUNTESTFLAGS="-v -v -v jit.exp=test-factorial.c" + [gcc] $ make check-jit RUNTESTFLAGS="-v -v -v jit.exp=test-factorial.c" and once a test has been compiled, you can debug it directly: -- 1.7.11.7