source: src/tests/Makefile.am@ cd034920

ADT aaron-thesis arm-eh ast-experimental cleanup-dtors deferred_resn demangler enum forall-pointer-decay jacob/cs343-translation jenkins-sandbox new-ast new-ast-unique-expr new-env no_list persistent-indexer pthread-emulation qualifiedEnum resolv-new stuck-waitfor-destruct with_gc
Last change on this file since cd034920 was cd034920, checked in by Peter A. Buhr <pabuhr@…>, 9 years ago

mark and move new concurrency test output to correct location

  • Property mode set to 100644
File size: 4.1 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 13:29:36 2017
14## Update Count : 46
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 thread \
29 matrixSum \
30 monitor \
31 multi-monitor \
32 boundedBuffer \
33 preempt \
34 sched-int-block \
35 sched-int-disjoint \
36 sched-int-wait \
37 sched-ext-barge \
38 sched-ext-dtor \
39 sched-ext-else \
40 sched-ext-parse \
41 sched-ext-recurse \
42 sched-ext-statment \
43 sched-ext-when
44else
45concurrent=no
46concurrent_test=
47endif
48
49# applies to both programs
50DEBUG_FLAGS =
51
52BUILD_FLAGS = -g -Wall -Wno-unused-function -quiet @CFA_FLAGS@
53if !BUILD_DEBUG
54BUILD_FLAGS += -nodebug
55else
56if !BUILD_RELEASE
57BUILD_FLAGS += -debug
58else
59BUILD_FLAGS += ${DEBUG_FLAGS}
60endif
61endif
62
63TEST_FLAGS = $(if $(test), 2> .err/${@}.log, )
64AM_CFLAGS = ${TEST_FLAGS} ${BUILD_FLAGS}
65CC = @CFA_BINDIR@/@CFA_NAME@
66
67.PHONY : list
68EXTRA_PROGRAMS = fstream_test vector_test avl_test # build but do not install
69
70fstream_test_SOURCES = fstream_test.c
71fstream_test_CFLAGS = $(if $(test), 2>> .err/fstream_test.log, ) ${BUILD_FLAGS}
72
73vector_test_SOURCES = vector/vector_int.c vector/array.c vector/vector_test.c
74vector_test_CFLAGS = $(if $(test), 2>> .err/vector_test.log, ) ${BUILD_FLAGS}
75
76avl_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
77avl_test_CFLAGS = $(if $(test), 2>> .err/avl_test.log, ) ${BUILD_FLAGS}
78
79all-local :
80 @+python test.py --debug=${debug} --concurrent=${concurrent} ${quick_test}
81
82all-tests :
83 @+python test.py --all --debug=${debug} --concurrent=${concurrent} # '@' => do not echo command (SILENT), '+' => allows recursive make from within python program
84
85clean-local :
86 rm -f ${EXTRA_PROGRAMS}
87
88list :
89 @+python test.py --list --concurrent=${concurrent}
90
91concurrency :
92 @+python test.py --debug=${debug} --concurrent=${concurrent} ${concurrent_test}
93
94.dummy : .dummy.c @CFA_BINDIR@/@CFA_NAME@
95 ${CC} ${BUILD_FLAGS} -XCFA -n ${<} -o ${@} #don't use CFLAGS, this rule is not a real test
96
97
98% : %.c @CFA_BINDIR@/@CFA_NAME@
99 ${CC} ${AM_CFLAGS} ${CFLAGS} ${<} -o ${@}
100
101dtor-early-exit-ERR1: dtor-early-exit.c @CFA_BINDIR@/@CFA_NAME@
102 ${CC} ${AM_CFLAGS} ${CFLAGS} -DERR1 ${<} -o ${@}
103
104dtor-early-exit-ERR2: dtor-early-exit.c @CFA_BINDIR@/@CFA_NAME@
105 ${CC} ${AM_CFLAGS} ${CFLAGS} -DERR2 ${<} -o ${@}
106
107declarationSpecifier: declarationSpecifier.c @CFA_BINDIR@/@CFA_NAME@
108 ${CC} ${AM_CFLAGS} ${CFLAGS} -CFA -XCFA -p -XCFA -L ${<} -o ${@}
109
110gccExtensions : gccExtensions.c @CFA_BINDIR@/@CFA_NAME@
111 ${CC} ${AM_CFLAGS} ${CFLAGS} -CFA -XCFA -p -XCFA -L ${<} -o ${@}
112
113extension : extension.c @CFA_BINDIR@/@CFA_NAME@
114 ${CC} ${AM_CFLAGS} ${CFLAGS} -CFA -XCFA -p -XCFA -L ${<} -o ${@}
115
116attributes : attributes.c @CFA_BINDIR@/@CFA_NAME@
117 ${CC} ${AM_CFLAGS} ${CFLAGS} -CFA -XCFA -p -XCFA -L ${<} -o ${@}
118
119KRfunctions : KRfunctions.c @CFA_BINDIR@/@CFA_NAME@
120 ${CC} ${AM_CFLAGS} ${CFLAGS} -CFA -XCFA -p -XCFA -L ${<} -o ${@}
121
122literals : literals.c @CFA_BINDIR@/@CFA_NAME@
123 ${CC} ${AM_CFLAGS} ${CFLAGS} -CFA -XCFA -p -XCFA -L ${<} -o ${@}
124
125sched-ext-parse : sched-ext-parse.c @CFA_BINDIR@/@CFA_NAME@
126 ${CC} ${AM_CFLAGS} ${CFLAGS} -CFA -XCFA -p -XCFA -L ${<} -o ${@}
127
128gmp : gmp.c @CFA_BINDIR@/@CFA_NAME@
129 ${CC} ${AM_CFLAGS} ${CFLAGS} -lgmp ${<} -o ${@}
130
131memberCtors-ERR1: memberCtors.c @CFA_BINDIR@/@CFA_NAME@
132 ${CC} ${AM_CFLAGS} ${CFLAGS} -DERR1 ${<} -o ${@}
133
134completeTypeError : completeTypeError.c @CFA_BINDIR@/@CFA_NAME@
135 ${CC} ${AM_CFLAGS} ${CFLAGS} -DERR1 ${<} -o ${@}
Note: See TracBrowser for help on using the repository browser.