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)
Location:
sources/test_regression/09092005a
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • sources/test_regression/09092005a/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 \
    10     echo "OK" ; \
    11     else echo "KO" ; \
     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    $(ECHO) -e "$(OK)" ; \
     11    else $(ECHO) -e "$(KO)" ; \
    1212    fi ;
    1313       
  • sources/test_regression/09092005a/system.cpp

    r55 r56  
    1616
    1717    sc_uint<ADDRSIZE> LINEADDR_MASK = ~(((sc_uint<ADDRSIZE>) ~0x0) >> (ADDRSIZE - OFFSETSIZE - BPFSIZE));
    18     cout << "LINEADDR_MASK == " << std::hex << LINEADDR_MASK << endl;
     18    printf("LINEADDR_MASK == 0x%08x", (unsigned int) LINEADDR_MASK);
    1919
    2020    return 0;
Note: See TracChangeset for help on using the changeset viewer.