Ignore:
Timestamp:
Jun 29, 2009, 5:43:54 PM (15 years ago)
Author:
buchmann
Message:

Remove an unused regression test.
Update some other tests.
Add a TODO section into README file.
Disable some debugging compiler options for common users.

Location:
sources/test_regression/31072006
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • sources/test_regression/31072006/Makefile

    r15 r34  
    4646
    4747%_systemcass.o : %_systemcass.cpp
    48         $(CXX) $(CFLAGS_SYSTEMCASS) -DCHECK_MULTIWRITING2PORT -MM $*_systemcass.cpp >> Makefile.deps
    49         $(CXX) $(CFLAGS_SYSTEMCASS) -DCHECK_MULTIWRITING2PORT -c $*_systemcass.cpp -o $*_systemcass.o
     48        $(CXX) $(CFLAGS_SYSTEMCASS) -DCONFIG_CHECK_MULTIWRITING2REGISTER -MM $*_systemcass.cpp >> Makefile.deps
     49        $(CXX) $(CFLAGS_SYSTEMCASS) -DCONFIG_CHECK_MULTIWRITING2REGISTER -c $*_systemcass.cpp -o $*_systemcass.o
    5050
    5151%_socview.o : %_socview.cpp
  • sources/test_regression/31072006/system_bug.cpp

    r1 r34  
    1313
    1414struct test : sc_module {
    15   int                             reg;
     15  sc_signal<int>                  reg;
    1616 
    1717  sc_in_clk                       clk;
     
    1919 
    2020  sc_out<int>                     o1;
    21   sc_inout<bool>                    o2;
     21  sc_out<bool>                    o2;
    2222
    2323  void trans ()
     
    2929      reg        = 0;
    3030    }
     31    reg = 2;
    3132  }
    3233
    3334  void gen ()
    3435  {
    35     o2 = 0;
    3636    o1 = reg;
    3737    o2 = reg & 1;
  • sources/test_regression/31072006/system_ok.cpp

    r1 r34  
    1313
    1414struct test : sc_module {
    15   int                             reg;
     15  sc_signal<int>                  reg;
    1616 
    1717  sc_in_clk                       clk;
     
    4444                sensitive << clk.pos();
    4545    dont_initialize();
     46                SC_METHOD(gen);
     47                sensitive << clk.neg();
     48    dont_initialize();
    4649        };
    4750};
Note: See TracChangeset for help on using the changeset viewer.