Last change
on this file since 55 was
55,
checked in by meunier, 12 years ago
|
Tried to clean the test_regression directory:
- Code formatting
- Supressed warnings
- Made comprehensible outputs
- Factorized Makefiles
There's still a lot to do (many tests don't pass for either good or bad reasons)
|
File size:
520 bytes
|
Rev | Line | |
---|
[1] | 1 | include ../env.mk |
---|
[55] | 2 | include ../Makefile.common |
---|
[1] | 3 | |
---|
[55] | 4 | test : all |
---|
| 5 | @echo -ne "| Testing $$(basename $$(pwd)): " ; |
---|
| 6 | @./$(EXE_SCASS) > $(LOG_SCASS) 2> /dev/null |
---|
| 7 | @./$(EXE_SC) > $(LOG_SC) 2> /dev/null |
---|
| 8 | @if diff $(LOG_SC) $(LOG_SCASS) > /dev/null ; then \ |
---|
| 9 | echo "OK" ; \ |
---|
| 10 | else echo "KO" ; \ |
---|
| 11 | fi ; |
---|
[1] | 12 | |
---|
| 13 | |
---|
[55] | 14 | #./system_systemcass.x || eval ${failcom} ; \ |
---|
[1] | 15 | ./system2_systemcass.x ; \ |
---|
| 16 | if [ $$? -ne 29 ] ; then eval ${failcom} ; fi ; \ |
---|
| 17 | ./system3_systemcass.x ; \ |
---|
| 18 | if [ $$? -ne 29 ] ; then eval ${failcom} ; fi ; \ |
---|
| 19 | echo Test OK. |
---|
| 20 | |
---|
Note: See
TracBrowser
for help on using the repository browser.