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/16112005a/Makefile

    r55 r56  
    33
    44test : all
    5         @echo -ne "| Testing $$(basename $$(pwd)): " ;
    6         @./$(EXE_SCASS) > $(LOG_SCASS) 2> /dev/null
    7         @./$(EXE_SC) > $(LOG_SC) 2> /dev/null
    8         @if diff $(LOG_SC) $(LOG_SCASS) > /dev/null ; then \
    9     echo "OK" ; \
    10     else echo "KO" ; \
     5        $(SILENCE)$(ECHO) -ne "| Testing $$(basename $$(pwd)): " ;
     6        $(SILENCE)./$(EXE_SCASS) > $(LOG_SCASS) 2> /dev/null
     7        $(SILENCE)./$(EXE_SC) > $(LOG_SC) 2> /dev/null
     8        $(SILENCE)if diff $(LOG_SC) $(LOG_SCASS) > /dev/null ; then \
     9    $(ECHO) -e "$(OK)" ; \
     10    else $(ECHO) -e "$(KO)" ; \
    1111    fi ;
    1212
    1313
    14 #./system_systemcass.x  || eval ${failcom} ; \
    15         ./system2_systemcass.x ; \
    16    if [ $$? -ne 29 ] ; then eval ${failcom} ; fi ; \
    17         ./system3_systemcass.x ; \
    18    if [ $$? -ne 29 ] ; then eval ${failcom} ; fi ; \
    19         echo Test OK.
    20 
Note: See TracChangeset for help on using the changeset viewer.