source: tests/Makefile.am @ c2051e10

ADTarm-ehast-experimentalenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxnew-astnew-ast-unique-exprpthread-emulationqualifiedEnum
Last change on this file since c2051e10 was 5c4a473, checked in by Thierry Delisle <tdelisle@…>, 5 years ago

Merge branch 'master' into distcc

  • Property mode set to 100644
File size: 5.4 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 Nov 20 11:18:51 2018
14## Update Count     : 68
15###############################################################################
16
17AUTOMAKE_OPTIONS = foreign    # do not require all the GNU file names
18ACLOCAL_AMFLAGS  = -I automake
19
20include $(top_srcdir)/src/cfa.make
21
22debug=yes
23installed=no
24archiveerrors=
25
26INSTALL_FLAGS=-in-tree
27DEBUG_FLAGS=-debug -O0
28
29quick_test=avl_test operators numericConstants expression enum array typeof cast raii/dtor-early-exit raii/init_once attributes
30
31concurrent=
32timeouts=
33
34TEST_PY = python3 ${builddir}/test.py
35
36# applies to both programs
37# since automake doesn't have support for CFA we have to
38AM_CFLAGS = $(if $(test), 2> $(test), ) \
39        -g \
40        -Wall \
41        -Wno-unused-function \
42        -quiet @CFA_FLAGS@ \
43        -DIN_DIR="${abs_srcdir}/.in/"
44
45CC = $(if $(DISTCC_CFA_PATH),distcc $(DISTCC_CFA_PATH) -dist-tree -in-tree,@CFACC@ ${DEBUG_FLAGS} ${INSTALL_FLAGS} ${ARCH_FLAGS})
46CFACCBIN = @CFACC@
47CFACC = $(CC)
48
49PRETTY_PATH=mkdir -p $(dir $(abspath ${@})) && cd ${srcdir} &&
50
51.PHONY: list .validate
52.INTERMEDIATE: .validate .validate.cfa
53EXTRA_PROGRAMS = avl_test .dummy_hack # build but do not install
54
55avl_test_SOURCES = avltree/avl_test.cfa avltree/avl0.cfa avltree/avl1.cfa avltree/avl2.cfa avltree/avl3.cfa avltree/avl4.cfa avltree/avl-private.cfa
56# automake doesn't know we still need C/CPP rules so pretend like we have a C program
57_dummy_hack_SOURCES = .dummy_hack.c .dummy_hackxx.cpp
58
59#----------------------------------------------------------------------------------------------------------------
60all-local :
61        @+${TEST_PY} --debug=${debug} --install=${installed} --archive-errors=${archiveerrors} ${concurrent} ${timeouts} ${quick_test}
62
63all-tests :
64        @+${TEST_PY} --debug=${debug} --install=${installed} --archive-errors=${archiveerrors} ${concurrent} ${timeouts} --all # '@' => do not echo command (SILENT), '+' => allows recursive make from within python program
65
66clean-local :
67        rm -f ${EXTRA_PROGRAMS}
68
69list :
70        @+${TEST_PY} --list ${concurrent}
71
72.validate: .validate.cfa
73        $(CFACOMPILE) .validate.cfa -fsyntax-only -Wall -Wextra -Werror
74
75.validate.cfa:
76        @echo "int main() { return 0; }" > ${@}
77
78# automake doesn't know we still need C rules so pretend like we have a C program
79.dummy_hack.c:
80        @echo "int main() { return 0; }" > ${@}
81
82.dummy_hackxx.cpp:
83        @echo "int bar() { return 0; }" > ${@}
84
85concurrency :
86        @+${TEST_PY} --debug=${debug}  --install=${installed} -Iconcurrent
87
88#----------------------------------------------------------------------------------------------------------------
89
90# Use for all tests, make sure the path are correct and all flags are added
91CFACOMPILETEST=$(PRETTY_PATH) $(CFACOMPILE) -c $(shell realpath --relative-to=${srcdir} ${<}) $($(shell echo "${@}_FLAGS" | sed 's/-\|\//_/g'))
92
93# Use for tests that either generate an executable, print directly to stdout or the make command is expected to fail
94CFATEST_STDOUT=$(CFACOMPILETEST) -o $(abspath ${@})
95
96# Use for tests where the make command is expecte to succeed but the expected.txt should be compared to stderr
97CFATEST_STDERR=$(CFACOMPILETEST) 2> $(abspath ${@})
98
99#----------------------------------------------------------------------------------------------------------------
100
101# implicit rule so not all test require a rule
102% : %.cfa $(CFACCBIN)
103        $(CFACOMPILETEST) -o $(abspath ${@}).o
104        $(CFACC) $(abspath ${@}).o -o $(abspath ${@})
105
106
107% : %.cpp
108        $(PRETTY_PATH) $(CXXCOMPILE) $(shell realpath --relative-to=${srcdir} ${<}) -o $(abspath ${@})
109
110#------------------------------------------------------------------------------
111# TARGET WITH STANDARD RULE BUT CUSTOM FLAGS
112#------------------------------------------------------------------------------
113# Expected failures
114declarationSpecifier_FLAGS= -CFA -XCFA -p
115gccExtensions_FLAGS= -CFA -XCFA -p
116extension_FLAGS= -CFA -XCFA -p
117attributes_FLAGS= -CFA -XCFA -p
118functions_FLAGS= -CFA -XCFA -p
119KRfunctions_FLAGS= -CFA -XCFA -p
120gmp_FLAGS= -lgmp
121
122#------------------------------------------------------------------------------
123# Expected failures
124completeTypeError_FLAGS= -DERR1
125
126#------------------------------------------------------------------------------
127# CUSTOM TARGET
128#------------------------------------------------------------------------------
129typedefRedef-ERR1: typedefRedef.cfa $(CFACCBIN)
130        $(CFATEST_STDOUT) -DERR1
131
132alloc-ERROR: alloc.cfa $(CFACCBIN)
133        $(CFATEST_STDOUT) -DERR1
134
135nested-types-ERR1: nested-types.cfa $(CFACCBIN)
136        $(CFATEST_STDOUT) -DERR1
137
138nested-types-ERR2: nested-types.cfa $(CFACCBIN)
139        $(CFATEST_STDOUT) -DERR2
140
141raii/dtor-early-exit-ERR1: raii/dtor-early-exit.cfa $(CFACCBIN)
142        $(CFATEST_STDOUT) -DERR1
143
144raii/dtor-early-exit-ERR2: raii/dtor-early-exit.cfa $(CFACCBIN)
145        $(CFATEST_STDOUT) -DERR2
146
147raii/memberCtors-ERR1: raii/memberCtors.cfa $(CFACCBIN)
148        $(CFATEST_STDOUT) -DERR1
149
150raii/ctor-autogen-ERR1: raii/ctor-autogen.cfa $(CFACCBIN)
151        $(CFATEST_STDOUT) -DERR1
152
153#builtins
154builtins/sync: builtins/sync.cfa $(CFACCBIN)
155        $(CFATEST_STDERR) -fsyntax-only
156
157# Warnings
158warnings/self-assignment: warnings/self-assignment.cfa $(CFACCBIN)
159        $(CFATEST_STDERR) -fsyntax-only
Note: See TracBrowser for help on using the repository browser.