tests: add nitc test
[nit.git] / tests / Makefile
1
2 separate:
3 ./tests.sh *.nit ../examples/*.nit ../src/nitdoc.nit ../src/nitc.nit
4
5 some:
6 ./tests.sh base_compile.nit base_attr.nit base_gen.nit test_gen_inh.nit bench_fib.nit example_objet.nit
7
8 global:
9 ./tests.sh -o --global *.nit ../examples/*.nit ../src/nitdoc.nit ../src/nitc.nit
10
11 icode:
12 ./tests_icode.sh icode*.nit
13
14 all: separate global icode
15
16 failed:
17 @[ ! -s errlist ] && echo 'No failed tests to execute' ; true
18 @[ -s errlist ] && ./tests.sh `cat errlist | sort -u` ; true
19
20 store:
21 ./store_save.sh *.nit
22
23 clean:
24 @rm -r -f -- *.bin *.res *.write *.err *.log alt || true