Ignore:
Timestamp:
May 29, 2013, 6:05:44 PM (11 years ago)
Author:
meunier
Message:
  • Tried to fix a problem with echo
  • Started to resolve some tests failing (often because of the test itself)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • sources/test_regression/15092005b/Makefile

    r55 r56  
    44
    55test : all
    6         @echo -ne "| Testing $$(basename $$(pwd)): " ;
    7         @./$(EXE_SCASS) > $(LOG_SCASS) 2> /dev/null
    8         @./$(EXE_SC) > $(LOG_SC) 2> /dev/null
    9         @if diff $(LOG_SC) $(LOG_SCASS) > /dev/null ; then \
     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 \
    1010                ./$(EXE_SCASS) --p --d 2> /dev/null ; \
    1111                if [ $$? -eq 37 ] ; then \
    12                         echo "OK" ; \
     12                        $(ECHO) -e "$(OK)" ; \
    1313                else \
    14                         echo "KO" ; \
     14                        $(ECHO) -e "$(KO) 1" ; \
    1515                fi ; \
    1616        else \
    17                 echo "KO" ; \
     17                $(ECHO) -e "$(KO) 2" ; \
    1818        fi ;
    1919
Note: See TracChangeset for help on using the changeset viewer.