source: sources/test_regression/07122006a/Makefile @ 55

Last change on this file since 55 was 55, checked in by meunier, 11 years ago

Tried to clean the test_regression directory:

  • Code formatting
  • Supressed warnings
  • Made comprehensible outputs
  • Factorized Makefiles

There's still a lot to do (many tests don't pass for either good or bad reasons)

  • Property svn:executable set to *
File size: 382 bytes
Line 
1
2include ../env.mk
3SRC = system_gen_moore.cpp system_gen_mealy.cpp system_transition.cpp
4include ../Makefile.common
5
6
7test : 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       
16
Note: See TracBrowser for help on using the repository browser.