Last change
on this file since 58 was
56,
checked in by meunier, 11 years ago
|
- Tried to fix a problem with echo
- Started to resolve some tests failing (often because of the test itself)
|
File size:
566 bytes
|
Rev | Line | |
---|
[1] | 1 | include ../env.mk |
---|
[55] | 2 | include ../Makefile.common |
---|
[1] | 3 | |
---|
[55] | 4 | test: $(EXE_SCASS) |
---|
[56] | 5 | $(SILENCE)$(ECHO) -ne "| Testing $$(basename $$(pwd)): " ; |
---|
| 6 | $(SILENCE)./$(EXE_SCASS) --p --t 2> /dev/null ; \ |
---|
[55] | 7 | if [ $$? -eq 197 ] ; then \ |
---|
| 8 | if diff methodprocess_graph.dot methodprocess_graph_reference.dot > /dev/null ; then \ |
---|
| 9 | if tail -n +3 reduced_signal_graph.dot | diff reduced_signal_graph_reference.dot - > /dev/null ; then \ |
---|
[56] | 10 | $(ECHO) -e "$(OK)" ; \ |
---|
[55] | 11 | else \ |
---|
[56] | 12 | $(ECHO) -e "$(KO) 1" ; \ |
---|
[55] | 13 | fi ; \ |
---|
| 14 | else \ |
---|
[56] | 15 | $(ECHO) -e "$(KO) 2" ; \ |
---|
[55] | 16 | fi ; \ |
---|
| 17 | else \ |
---|
[56] | 18 | $(ECHO) -e "$(KO) 3" ; \ |
---|
[55] | 19 | fi ; |
---|
[1] | 20 | |
---|
| 21 | |
---|
Note: See
TracBrowser
for help on using the repository browser.