source: sources/test_regression/15092005b/Makefile

Last change on this file was 56, checked in by meunier, 13 years ago
  • Tried to fix a problem with echo
  • Started to resolve some tests failing (often because of the test itself)
  • Property svn:executable set to *
File size: 469 bytes
Line 
1
2include ../env.mk
3include ../Makefile.common
4
5test : all
6 $(SILENCE)$(ECHO) -ne "| Testing $$(basename $$(pwd)): " ;
7 $(SILENCE)./$(EXE_SCASS) > $(LOG_SCASS) 2> /dev/null
8 $(SILENCE)./$(EXE_SC) > $(LOG_SC) 2> /dev/null
9 $(SILENCE)if diff $(LOG_SC) $(LOG_SCASS) > /dev/null ; then \
10 ./$(EXE_SCASS) --p --d 2> /dev/null ; \
11 if [ $$? -eq 37 ] ; then \
12 $(ECHO) -e "$(OK)" ; \
13 else \
14 $(ECHO) -e "$(KO) 1" ; \
15 fi ; \
16 else \
17 $(ECHO) -e "$(KO) 2" ; \
18 fi ;
19
20
Note: See TracBrowser for help on using the repository browser.