From: Jean-Sebastien Gelinas Date: Mon, 23 Nov 2009 23:07:13 +0000 (-0500) Subject: tools: add a 'global' compilation target to the tests makefile X-Git-Tag: v0.4~104 X-Git-Url: http://nitlanguage.org tools: add a 'global' compilation target to the tests makefile Signed-off-by: Jean-Sebastien Gelinas Signed-off-by: Jean Privat --- diff --git a/tests/Makefile b/tests/Makefile index 2b01363..173d25f 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -5,6 +5,9 @@ all: some: ./tests.sh base_compile.nit base_attr.nit base_gen.nit test_gen_inh.nit bench_fib.nit example_objet.nit +global: + ./tests.sh -o --global *.nit ../examples/*.nit ../src/nitdoc.nit + failed: @[ ! -s errlist ] && echo 'No failed tests to execute' ; true @[ -s errlist ] && ./tests.sh `cat errlist | sort -u` ; true