source: src/tests/Makefile.am @ e68b3a8

ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsdeferred_resndemanglerenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxnew-astnew-ast-unique-exprno_listpersistent-indexerpthread-emulationqualifiedEnum
Last change on this file since e68b3a8 was e68b3a8, checked in by Thierry Delisle <tdelisle@…>, 6 years ago

Fixed some inconsistencies in the srcdir/builddir for tests and libcfa

  • 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 : Wed Jun  6 16:42:20 2018
14## Update Count     : 49
15###############################################################################
16
17
18debug=yes
19
20quick_test=avl_test operators numericConstants expression enum array typeof cast raii/dtor-early-exit raii/init_once attributes
21
22if BUILD_CONCURRENCY
23concurrent=
24else
25concurrent='-Econcurrent'
26endif
27
28TEST_PY = python ${srcdir}/test.py
29
30# applies to both programs
31DEBUG_FLAGS =
32
33BUILD_FLAGS = -g -Wall -Wno-unused-function -quiet @CFA_FLAGS@ -I.
34if !BUILD_DEBUG
35BUILD_FLAGS += -nodebug
36else
37if !BUILD_RELEASE
38BUILD_FLAGS += -debug
39else
40BUILD_FLAGS += ${DEBUG_FLAGS}
41endif
42endif
43
44TEST_FLAGS = $(if $(test), 2> $(test), )
45AM_CFLAGS = ${TEST_FLAGS} ${BUILD_FLAGS}
46CC = ${abs_top_builddir}/src/driver/cfa -DIN_DIR="${srcdir}/.in/"
47
48.PHONY : list
49EXTRA_PROGRAMS = fstream_test avl_test # build but do not install
50
51fstream_test_SOURCES = fstream_test.c
52fstream_test_CFLAGS = $(if $(test), 2>> $(test), ) ${BUILD_FLAGS}
53
54avl_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
55avl_test_CFLAGS = $(if $(test), 2>> $(test), ) ${BUILD_FLAGS}
56
57all-local :
58        @+${TEST_PY} --debug=${debug} ${concurrent} ${quick_test}
59
60all-tests :
61        @+${TEST_PY} --all --debug=${debug} ${concurrent}               # '@' => do not echo command (SILENT), '+' => allows recursive make from within python program
62
63clean-local :
64        rm -f ${EXTRA_PROGRAMS}
65
66list :
67        @+${TEST_PY} --list ${concurrent}
68
69concurrency :
70        @+${TEST_PY} --debug=${debug} -Iconcurrent
71
72% : ${srcdir}/%.c @CFA_BINDIR@/@CFA_NAME@
73        $(COMPILE) $(abspath ${<}) -o ${@}
74
75declarationSpecifier: declarationSpecifier.c @CFA_BINDIR@/@CFA_NAME@
76        $(COMPILE) -CFA -XCFA -p $(abspath ${<}) -o ${@}
77
78gccExtensions : gccExtensions.c @CFA_BINDIR@/@CFA_NAME@
79        $(COMPILE) -CFA -XCFA -p $(abspath ${<}) -o ${@}
80
81extension : extension.c @CFA_BINDIR@/@CFA_NAME@
82        $(COMPILE) -CFA -XCFA -p $(abspath ${<}) -o ${@}
83
84attributes : attributes.c @CFA_BINDIR@/@CFA_NAME@
85        $(COMPILE) -CFA -XCFA -p $(abspath ${<}) -o ${@}
86
87functions: functions.c @CFA_BINDIR@/@CFA_NAME@
88        $(COMPILE) -CFA -XCFA -p $(abspath ${<}) -o ${@}
89
90KRfunctions : KRfunctions.c @CFA_BINDIR@/@CFA_NAME@
91        $(COMPILE) -CFA -XCFA -p $(abspath ${<}) -o ${@}
92
93sched-ext-parse : sched-ext-parse.c @CFA_BINDIR@/@CFA_NAME@
94        $(COMPILE) -CFA -XCFA -p $(abspath ${<}) -o ${@}
95
96gmp : gmp.c @CFA_BINDIR@/@CFA_NAME@
97        $(COMPILE) -lgmp $(abspath ${<}) -o ${@}
98
99completeTypeError : completeTypeError.c @CFA_BINDIR@/@CFA_NAME@
100        $(COMPILE) -DERR1 $(abspath ${<}) -o ${@}
101
102typedefRedef-ERR1: typedefRedef.c @CFA_BINDIR@/@CFA_NAME@
103        $(COMPILE) -DERR1 $(abspath ${<}) -o ${@}
104
105alloc-ERROR: alloc.c @CFA_BINDIR@/@CFA_NAME@
106        $(COMPILE) -DERR1 $(abspath ${<}) -o ${@}
107
108fallthrough-ERROR: fallthrough.c @CFA_BINDIR@/@CFA_NAME@
109        $(COMPILE) -DERR1 $(abspath ${<}) -o ${@}
110
111nested-types-ERR1: nested-types.c @CFA_BINDIR@/@CFA_NAME@
112        $(COMPILE) -DERR1 $(abspath ${<}) -o ${@}
113
114nested-types-ERR2: nested-types.c @CFA_BINDIR@/@CFA_NAME@
115        $(COMPILE) -DERR2 $(abspath ${<}) -o ${@}
116
117# Constructor/destructor tests
118raii/dtor-early-exit-ERR1: raii/dtor-early-exit.c @CFA_BINDIR@/@CFA_NAME@
119        $(COMPILE) -DERR1 $(abspath ${<}) -o ${@}
120
121raii/dtor-early-exit-ERR2: raii/dtor-early-exit.c @CFA_BINDIR@/@CFA_NAME@
122        $(COMPILE) -DERR2 $(abspath ${<}) -o ${@}
123
124raii/memberCtors-ERR1: raii/memberCtors.c @CFA_BINDIR@/@CFA_NAME@
125        $(COMPILE) -DERR1 $(abspath ${<}) -o ${@}
126
127raii/ctor-autogen-ERR1: raii/ctor-autogen.c @CFA_BINDIR@/@CFA_NAME@
128        $(COMPILE) -DERR1 $(abspath ${<}) -o ${@}
129
130# Warnings
131warnings/self-assignment: warnings/self-assignment.c @CFA_BINDIR@/@CFA_NAME@
132        $(COMPILE) $(abspath ${<}) 2> ${@} -fsyntax-only
133
134#builtins
135builtins/sync: builtins/sync.c @CFA_BINDIR@/@CFA_NAME@
136        $(COMPILE) $(abspath ${<}) 2> ${@} -fsyntax-only
Note: See TracBrowser for help on using the repository browser.