source: sources/test_regression/Makefile @ 47

Last change on this file since 47 was 47, checked in by buchmann, 15 years ago

This patch simplifies SystemCASS.

Remove:

  • ckeckings about multiwriting on registers and ports
  • checkings related to FSM modeling
  • regression tests related to the checkings
File size: 3.3 KB
Line 
1# Number    : Notes
2# 17032005  : trace & basic arithmetic using sc_uint/sc_int types
3# 25032005  : check signal graph, module order, signal order (--p --t)
4#             simple architecture
5# 29032005  : check signal graph, module order, signal order (--p --t)
6#             advanced architecture
7# 30032005  : check signal graph, module order, signal order (--p --t)
8#             advanced architecture
9#             bit mask
10# 19042005  : check vcd trace
11#             (bool, char, int, sc_uint<4 to 64>, sc_signal, sc_out, sc_in,
12#             sc_in_clk)
13# 04052005  : check range function
14# 07052005  : check range function and concat operator
15# 16062005  : check all the functions to browse model hierarchy.
16# 21062005  : check to_bool, to_string() functions
17# 05092005  : trying to bind a signal to an unknown type
18# 08092005  : unable to select the best method to schedule
19# 09092005  : ~ operator
20# 09092005b : starting clock edge
21# 09092005c : 1 module with 1 sc_out connected to 3 inner IP.
22#             (2 sc_in and 2 sc_out)
23# 14092005  : check vcd trace (sc_in, sc_out, sc_signal, bool, int)
24# 15092005  : check port dependency declaration. 3 different error messages.
25# 28102005  : check sc_time::to_string (), to_seconds (), to_double ().
26# 16112005  : check "sc_out and sc_in not bound" messages.
27# 16122005  : check sc_module_name casts.
28# 19122005  : check simulator state saving for Socview compatibility
29# 17022006  : check rename function for Socview compatibility
30# 02052006  : check sc_uint, sc_int, sc_signal<X> when X is double, char,
31#             signed int, unsigned int and so on. (little/big endianness test)
32# 07122006  : check if we can declare an undefined external function as
33#             a sc_method.
34#             check a virtual method as a sc_method
35#             (Unable to check if sc_method is a virtual one)
36# 20122006  : check Petrot's scheduling (CASS, quasi static)
37#                   Mouchard's scheduling (FastSysC, incomplete static)
38#                   Buchmann's scheduling (SystemCASS, totally static)
39# 16022007  : check --nobanner option
40# 23032007  : check multiple execution on the same computer
41# 15042009  : check sc_uint operators (==, =, <<=, +=)
42#             in some cases, such as a compairison, the developper has to use
43#             sc_signal<T>::read() method to explicitly read a sc_signal.
44
45## Uncomment the following variable if you want to compile and run the
46## SOCVIEW regression test
47##
48
49#SOCVIEW_TEST=19122005 \
50             17022006 \
51#
52
53DIR = \
54      17032005 \
55      25032005 \
56      29032005 \
57      30032005 \
58      19042005 \
59      04052005 \
60      07052005 \
61      21062005 \
62      16062005 \
63      05092005 \
64      08092005 \
65      09092005 \
66      09092005b\
67      09092005c\
68      14092005 \
69      15092005 \
70      28102005 \
71      16112005 \
72      16122005 \
73      02052006 \
74      07122006 \
75      20122006 \
76      16022007 \
77      15042009 \
78      ${SOCVIEW_TEST} \
79#
80
81failcom   = 'exit 1'
82
83compile : ${DIR}
84        @for i in ${DIR} ; do \
85    echo Testing $$i... ; \
86    ($(MAKE) -C $$i) || eval ${failcom} ; \
87  done;
88
89test : ${DIR}
90        @for i in ${DIR} ; do \
91    echo Testing $$i... ; \
92    ($(MAKE) -C $$i test) || eval ${failcom} ; ($(MAKE) -C $$i clean) ; \
93  done;
94       
95clean :
96        @for i in ${DIR} ; do \
97    echo Testing $$i... ; \
98    ($(MAKE) -C $$i clean) || eval ${failcom} ; \
99  done;
Note: See TracBrowser for help on using the repository browser.