Changeset 56 for sources/test_regression/07122006a
- Timestamp:
- May 29, 2013, 6:05:44 PM (11 years ago)
- Location:
- sources/test_regression/07122006a
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
sources/test_regression/07122006a/Makefile
r55 r56 4 4 include ../Makefile.common 5 5 6 # Checks compilation always succeeds here) 6 7 7 test : all 8 @echo -ne "| Testing $$(basename $$(pwd)): " ; 9 @./system_systemcass.x > $(LOG_SCASS) 2> /dev/null 10 @./system_systemc.x > $(LOG_SC) 2> /dev/null 11 @if diff $(LOG_SC) $(LOG_SCASS) > /dev/null ; then \ 12 echo "OK" ; \ 13 else echo "KO" ; \ 14 fi ; 15 8 test : $(EXE_SCASS) 9 $(SILENCE)$(ECHO) -ne "| Testing $$(basename $$(pwd)): " ; 10 $(SILENCE)./system_systemcass.x > $(LOG_SCASS) 2> /dev/null ; \ 11 $(ECHO) -e "$(OK)" ; \ 16 12 13 -
sources/test_regression/07122006a/system.cpp
r55 r56 17 17 sc_clock clk("clk"); 18 18 sc_signal<bool> resetn("resetn"); 19 sc_signal<int> 20 sc_signal<int> 19 sc_signal<int> in ("in"); 20 sc_signal<int> out("out"); 21 21 22 22 test test("test");
Note: See TracChangeset
for help on using the changeset viewer.