This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[jit] Fix "make check-jit"


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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]