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/08092005/Makefile

    r55 r56  
    33
    44test: $(EXE_SCASS)
    5         @echo -ne "| Testing $$(basename $$(pwd)): " ;
    6         @./$(EXE_SCASS) --p --t 2> /dev/null ; \
     5        $(SILENCE)$(ECHO) -ne "| Testing $$(basename $$(pwd)): " ;
     6        $(SILENCE)./$(EXE_SCASS) --p --t 2> /dev/null ; \
    77        if [ $$? -eq 197 ] ; then \
    88                if diff methodprocess_graph.dot methodprocess_graph_reference.dot > /dev/null ; then \
    99                        if tail -n +3 reduced_signal_graph.dot | diff reduced_signal_graph_reference.dot - > /dev/null ; then \
    10                                 echo "OK" ; \
     10                                $(ECHO) -e "$(OK)" ; \
    1111                        else \
    12                                 echo "KO1" ; \
     12                                $(ECHO) -e "$(KO) 1" ; \
    1313                        fi ; \
    1414                else \
    15                         echo "KO2" ; \
     15                        $(ECHO) -e "$(KO) 2" ; \
    1616                fi ; \
    1717        else \
    18                 echo "KO3" ; \
     18                $(ECHO) -e "$(KO) 3" ; \
    1919        fi ;
    2020
Note: See TracChangeset for help on using the changeset viewer.