Hi, For those of us who habitually build Ada, it’s convenient to have a way of running individual test suites without invoking the acats tests…
being able to do “make check-gcc-jit” from the top level is very useful when debugging jit testsuite issues. one can do "cd gcc ; make check-jit "- but this doesn’t seem 100% identical since the invocations from the top level set the host exports first. … the patch itself is trivial / obvious - I am just curious as to whether there was a reason for omitting it so far? If not, OK for master? thanks Iain ==== This is a convenience feature that allows the user to do "make check-gcc-jit" at the top level of the build to check that facility in isolation from others. Signed-off-by: Iain Sandoe <i...@sandoe.co.uk> ChangeLog: * Makefile.def: Add a jit check target for the jit language. * Makefile.in: Regenerate. --- Makefile.def | 1 + Makefile.in | 8 ++++++++ 2 files changed, 9 insertions(+) diff --git a/Makefile.def b/Makefile.def index fbfdb6fee08..7cbeca5b181 100644 --- a/Makefile.def +++ b/Makefile.def @@ -654,6 +654,7 @@ languages = { language=go; gcc-check-target=check-go; lib-check-target=check-gotools; }; languages = { language=d; gcc-check-target=check-d; lib-check-target=check-target-libphobos; }; +languages = { language=jit; gcc-check-target=check-jit; }; // Toplevel bootstrap bootstrap_stage = { id=1 ; };