source: branches/with_autoconf/test_regression/Makefile

Last change on this file was 3, checked in by buchmann, 19 years ago

Minor changes

File size: 3.4 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# 05042006 : check number of writings into each out port
31# check reading from an sc_out port
32# 02052006 : check sc_uint, sc_int, sc_signal<X> when X is double, char,
33# signed int, unsigned int and so on. (little/big endianness test)
34# 19072006 : SystemCASS allow 1 writing into each port for each delta cycle.
35# This testbench checks CHECK_MULTIWRITING2PORT macro.
36# 31072006 : SystemCASS allow 1 writing into each register for each cycle.
37# This testbench checks CHECK_MULTIWRITING2REGISTER macro.
38# 07122006 : check if we can declare an undefined external function as
39# a sc_method.
40# check a virtual method as a sc_method => segmentation fault
41# (Unable to check if sc_method is a virtual one)
42# 20122006 : check Petrot's scheduling (CASS, quasi static)
43# Mouchard's scheduling (FastSysC, incomplete static)
44# Buchmann's scheduling (SystemCASS, totally static)
45# 16022007 : check --nobanner option
46# 23032007 : check multiple execution on the same computer
47
48SOCVIEW_TEST=19122005 \
49 17022006 \
50#
51
52DIR = \
53 17032005 \
54 25032005 \
55 29032005 \
56 30032005 \
57 19042005 \
58 04052005 \
59 07052005 \
60 21062005 \
61 16062005 \
62 05092005 \
63 08092005 \
64 09092005 \
65 09092005b\
66 09092005c\
67 14092005 \
68 15092005 \
69 28102005 \
70 16112005 \
71 16122005 \
72 05042006 \
73 02052006 \
74 19072006 \
75 31072006 \
76 07122006 \
77 20122006 \
78 16022007 \
79 ${SOCVIEW_TEST} \
80#
81
82failcom = 'exit 1'
83
84compile : ${DIR}
85 @for i in ${DIR} ; do \
86 echo Testing $$i... ; \
87 ($(MAKE) -C $$i) || eval ${failcom} ; \
88 done;
89
90test : ${DIR}
91 @for i in ${DIR} ; do \
92 echo Testing $$i... ; \
93 ($(MAKE) -C $$i test) || eval ${failcom} ; ($(MAKE) -C $$i clean) ; \
94 done;
95
96clean :
97 @for i in ${DIR} ; do \
98 echo Testing $$i... ; \
99 ($(MAKE) -C $$i clean) || eval ${failcom} ; \
100 done;
Note: See TracBrowser for help on using the repository browser.