source: tests/Makefile.am @ 28582b2

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

Better handling of missing configurations

  • 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
22concurrent=
23
24TEST_PY = python ${srcdir}/test.py
25
26# applies to both programs
27AM_CFLAGS = $(if $(test), 2> $(test), ) \
28        -g \
29        -Wall \
30        -Wno-unused-function \
31        -quiet @CFA_FLAGS@ \
32        -DIN_DIR="${srcdir}/.in/" \
33        @BUILD_IN_TREE_FLAGS@
34
35AM_CFLAGS += ${DEBUG_FLAGS}
36
37CC = @CFACC@
38
39.PHONY: list .validate
40.INTERMEDIATE: .validate .validate.c
41EXTRA_PROGRAMS = fstream_test avl_test # build but do not install
42
43fstream_test_SOURCES = fstream_test.c
44
45avl_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
46
47all-local :
48        @+${TEST_PY} --debug=${debug} ${concurrent} ${quick_test}
49
50all-tests :
51        @+${TEST_PY} --all --debug=${debug} ${concurrent}               # '@' => do not echo command (SILENT), '+' => allows recursive make from within python program
52
53clean-local :
54        rm -f ${EXTRA_PROGRAMS}
55
56list :
57        @+${TEST_PY} --list ${concurrent}
58
59.validate: .validate.c
60        @$(COMPILE) .validate.c -fsyntax-only
61
62.validate.c:
63        @echo "int main() { return 0; }" > ${@}
64
65concurrency :
66        @+${TEST_PY} --debug=${debug} -Iconcurrent
67
68# SKULLDUGGERY like libcfa/Makefile.am prevent extensionless headers from being generated
69# however, here it is more complicated because it must match the dependencies based on how
70# they are generated by gcc
71headers = $(shell find $(top_srcdir)/libcfa/src -type f ! -name "*.*")
72headers_real = $(shell realpath --relative-to=$(top_srcdir)/libcfa/src $(headers))
73headers_deps = $(addprefix %/, $(headers_real))
74$(headers_deps) :
75        echo "Dummy rule, should never be called"
76
77# %/stdlib:
78#       echo "Dummy rule, should never be called"
79
80# implicit rule so not all test require a rule
81% : %.c $(CC)
82        $(COMPILE) $(abspath ${<}) -o ${@}
83
84declarationSpecifier: declarationSpecifier.c $(CC)
85        $(COMPILE) -CFA -XCFA -p $(abspath ${<}) -o ${@}
86
87gccExtensions : gccExtensions.c $(CC)
88        $(COMPILE) -CFA -XCFA -p $(abspath ${<}) -o ${@}
89
90extension : extension.c $(CC)
91        $(COMPILE) -CFA -XCFA -p $(abspath ${<}) -o ${@}
92
93attributes : attributes.c $(CC)
94        $(COMPILE) -CFA -XCFA -p $(abspath ${<}) -o ${@}
95
96functions: functions.c $(CC)
97        $(COMPILE) -CFA -XCFA -p $(abspath ${<}) -o ${@}
98
99KRfunctions : KRfunctions.c $(CC)
100        $(COMPILE) -CFA -XCFA -p $(abspath ${<}) -o ${@}
101
102sched-ext-parse : sched-ext-parse.c $(CC)
103        $(COMPILE) -CFA -XCFA -p $(abspath ${<}) -o ${@}
104
105gmp : gmp.c $(CC)
106        $(COMPILE) -lgmp $(abspath ${<}) -o ${@}
107
108completeTypeError : completeTypeError.c $(CC)
109        $(COMPILE) -DERR1 $(abspath ${<}) -o ${@}
110
111typedefRedef-ERR1: typedefRedef.c $(CC)
112        $(COMPILE) -DERR1 $(abspath ${<}) -o ${@}
113
114alloc-ERROR: alloc.c $(CC)
115        $(COMPILE) -DERR1 $(abspath ${<}) -o ${@}
116
117fallthrough-ERROR: fallthrough.c $(CC)
118        $(COMPILE) -DERR1 $(abspath ${<}) -o ${@}
119
120nested-types-ERR1: nested-types.c $(CC)
121        $(COMPILE) -DERR1 $(abspath ${<}) -o ${@}
122
123nested-types-ERR2: nested-types.c $(CC)
124        $(COMPILE) -DERR2 $(abspath ${<}) -o ${@}
125
126# Constructor/destructor tests
127raii/dtor-early-exit-ERR1: raii/dtor-early-exit.c $(CC)
128        $(COMPILE) -DERR1 $(abspath ${<}) -o ${@}
129
130raii/dtor-early-exit-ERR2: raii/dtor-early-exit.c $(CC)
131        $(COMPILE) -DERR2 $(abspath ${<}) -o ${@}
132
133raii/memberCtors-ERR1: raii/memberCtors.c $(CC)
134        $(COMPILE) -DERR1 $(abspath ${<}) -o ${@}
135
136raii/ctor-autogen-ERR1: raii/ctor-autogen.c $(CC)
137        $(COMPILE) -DERR1 $(abspath ${<}) -o ${@}
138
139# Warnings
140warnings/self-assignment: warnings/self-assignment.c $(CC)
141        $(COMPILE) $(abspath ${<}) 2> ${@} -fsyntax-only
142
143#builtins
144builtins/sync: builtins/sync.c $(CC)
145        $(COMPILE) $(abspath ${<}) 2> ${@} -fsyntax-only
Note: See TracBrowser for help on using the repository browser.