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:
368 bytes
|
Rev | Line | |
---|
[55] | 1 | |
---|
[1] | 2 | include ../env.mk |
---|
[55] | 3 | HIERARCHY = object_hierarchy.txt |
---|
| 4 | ERASE = $(HIERARCHY) |
---|
| 5 | include ../Makefile.common |
---|
[1] | 6 | |
---|
[55] | 7 | HIERARCHY_REF = object_hierarchy_ref.txt |
---|
[1] | 8 | |
---|
[55] | 9 | test : $(EXE_SCASS) |
---|
| 10 | @echo -ne "| Testing $$(basename $$(pwd)): " ; |
---|
| 11 | @./$(EXE_SCASS) $(HIERARCHY) 2> /dev/null |
---|
| 12 | @if diff $(HIERARCHY) $(HIERARCHY_REF) > /dev/null ; then \ |
---|
| 13 | echo "OK" ; \ |
---|
| 14 | else echo "KO" ; \ |
---|
| 15 | fi ; |
---|
[1] | 16 | |
---|
| 17 | |
---|
| 18 | |
---|
Note: See
TracBrowser
for help on using the repository browser.