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