source: src/tests/Makefile.am @ 0e04f59

ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsdeferred_resndemanglerenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxnew-astnew-ast-unique-exprnew-envno_listpersistent-indexerpthread-emulationqualifiedEnumresolv-newwith_gc
Last change on this file since 0e04f59 was 70529dc, checked in by Rob Schluntz <rschlunt@…>, 6 years ago

Add typedefRedef test

  • Property mode set to 100644
File size: 4.3 KB
Line 
1######################## -*- Mode: Makefile-Automake -*- ######################
2##
3## Cforall Version 1.0.0 Copyright (C) 2015 University of Waterloo
4##
5## The contents of this file are covered under the licence agreement in the
6## file "LICENCE" distributed with Cforall.
7##
8## Makefile.am --
9##
10## Author           : Peter A. Buhr
11## Created On       : Sun May 31 09:08:15 2015
12## Last Modified By : Peter A. Buhr
13## Last Modified On : Tue Oct 10 14:04:40 2017
14## Update Count     : 47
15###############################################################################
16
17debug=yes
18
19quick_test=vector_test avl_test operators numericConstants expression enum array typeof cast dtor-early-exit init_once attributes
20
21if BUILD_CONCURRENCY
22concurrent = yes
23quick_test += coroutine thread monitor
24concurrent_test =               \
25        coroutine               \
26        fmtLines                \
27        pingpong                \
28        prodcons                \
29        thread                  \
30        matrixSum               \
31        monitor                 \
32        multi-monitor           \
33        boundedBuffer           \
34        preempt                 \
35        sched-int-block         \
36        sched-int-disjoint      \
37        sched-int-wait          \
38        sched-ext-barge         \
39        sched-ext-dtor          \
40        sched-ext-else          \
41        sched-ext-parse         \
42        sched-ext-recurse       \
43        sched-ext-statment      \
44        sched-ext-when
45else
46concurrent=no
47concurrent_test=
48endif
49
50# applies to both programs
51DEBUG_FLAGS =
52
53BUILD_FLAGS = -g -Wall -Wno-unused-function -quiet @CFA_FLAGS@
54if !BUILD_DEBUG
55BUILD_FLAGS += -nodebug
56else
57if !BUILD_RELEASE
58BUILD_FLAGS += -debug
59else
60BUILD_FLAGS += ${DEBUG_FLAGS}
61endif
62endif
63
64TEST_FLAGS = $(if $(test), 2> .err/${@}.log, )
65AM_CFLAGS = ${TEST_FLAGS} ${BUILD_FLAGS}
66CC = @CFA_BINDIR@/@CFA_NAME@
67
68.PHONY : list
69EXTRA_PROGRAMS = fstream_test vector_test avl_test # build but do not install
70
71fstream_test_SOURCES = fstream_test.c
72fstream_test_CFLAGS = $(if $(test), 2>> .err/fstream_test.log, ) ${BUILD_FLAGS}
73
74vector_test_SOURCES = vector/vector_int.c vector/array.c vector/vector_test.c
75vector_test_CFLAGS = $(if $(test), 2>> .err/vector_test.log, ) ${BUILD_FLAGS}
76
77avl_test_SOURCES = avltree/avl_test.c avltree/avl0.c avltree/avl1.c avltree/avl2.c avltree/avl3.c avltree/avl4.c avltree/avl-private.c
78avl_test_CFLAGS = $(if $(test), 2>> .err/avl_test.log, ) ${BUILD_FLAGS}
79
80all-local :
81        @+python test.py --debug=${debug} --concurrent=${concurrent} ${quick_test}
82
83all-tests :
84        @+python test.py --all --debug=${debug} --concurrent=${concurrent}              # '@' => do not echo command (SILENT), '+' => allows recursive make from within python program
85
86clean-local :
87        rm -f ${EXTRA_PROGRAMS}
88
89list :
90        @+python test.py --list --concurrent=${concurrent}
91
92concurrency :
93        @+python test.py --debug=${debug} --concurrent=${concurrent} ${concurrent_test}
94
95.dummy : .dummy.c @CFA_BINDIR@/@CFA_NAME@
96        ${CC} ${BUILD_FLAGS} -XCFA -n ${<} -o ${@}                              #don't use CFLAGS, this rule is not a real test
97
98
99% : %.c @CFA_BINDIR@/@CFA_NAME@
100        ${CC} ${AM_CFLAGS} ${CFLAGS} ${<} -o ${@}
101
102dtor-early-exit-ERR1: dtor-early-exit.c @CFA_BINDIR@/@CFA_NAME@
103        ${CC} ${AM_CFLAGS} ${CFLAGS} -DERR1 ${<} -o ${@}
104
105dtor-early-exit-ERR2: dtor-early-exit.c @CFA_BINDIR@/@CFA_NAME@
106        ${CC} ${AM_CFLAGS} ${CFLAGS} -DERR2 ${<} -o ${@}
107
108declarationSpecifier: declarationSpecifier.c @CFA_BINDIR@/@CFA_NAME@
109        ${CC} ${AM_CFLAGS} ${CFLAGS} -CFA -XCFA -p -XCFA -L ${<} -o ${@}
110
111gccExtensions : gccExtensions.c @CFA_BINDIR@/@CFA_NAME@
112        ${CC} ${AM_CFLAGS} ${CFLAGS} -CFA -XCFA -p -XCFA -L ${<} -o ${@}
113
114extension : extension.c @CFA_BINDIR@/@CFA_NAME@
115        ${CC} ${AM_CFLAGS} ${CFLAGS} -CFA -XCFA -p -XCFA -L ${<} -o ${@}
116
117attributes : attributes.c @CFA_BINDIR@/@CFA_NAME@
118        ${CC} ${AM_CFLAGS} ${CFLAGS} -CFA -XCFA -p -XCFA -L ${<} -o ${@}
119
120KRfunctions : KRfunctions.c @CFA_BINDIR@/@CFA_NAME@
121        ${CC} ${AM_CFLAGS} ${CFLAGS} -CFA -XCFA -p -XCFA -L ${<} -o ${@}
122
123literals : literals.c @CFA_BINDIR@/@CFA_NAME@
124        ${CC} ${AM_CFLAGS} ${CFLAGS} -CFA -XCFA -p -XCFA -L ${<} -o ${@}
125
126sched-ext-parse : sched-ext-parse.c @CFA_BINDIR@/@CFA_NAME@
127        ${CC} ${AM_CFLAGS} ${CFLAGS} -CFA -XCFA -p -XCFA -L ${<} -o ${@}
128
129gmp : gmp.c @CFA_BINDIR@/@CFA_NAME@
130        ${CC} ${AM_CFLAGS} ${CFLAGS} -lgmp ${<} -o ${@}
131
132memberCtors-ERR1: memberCtors.c @CFA_BINDIR@/@CFA_NAME@
133        ${CC} ${AM_CFLAGS} ${CFLAGS} -DERR1 ${<} -o ${@}
134
135ctor-autogen-ERR1: ctor-autogen.c @CFA_BINDIR@/@CFA_NAME@
136        ${CC} ${AM_CFLAGS} ${CFLAGS} -DERR1 ${<} -o ${@}
137
138completeTypeError : completeTypeError.c @CFA_BINDIR@/@CFA_NAME@
139        ${CC} ${AM_CFLAGS} ${CFLAGS} -DERR1 ${<} -o ${@}
140
141typedefRedef-ERR1: typedefRedef.c @CFA_BINDIR@/@CFA_NAME@
142        ${CC} ${AM_CFLAGS} ${CFLAGS} -DERR1 ${<} -o ${@}
Note: See TracBrowser for help on using the repository browser.