source: tests/Makefile.am @ e4633b4

ADTast-experimental
Last change on this file since e4633b4 was b3ce76f, checked in by caparsons <caparson@…>, 14 months ago

resolved merge conflict in makefile changes

  • Property mode set to 100644
File size: 9.5 KB
RevLine 
[ef7d253]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
[e2887a9]13## Last Modified On : Fri May 12 18:03:57 2023
14## Update Count     : 176
[ef7d253]15###############################################################################
16
[0c1b566]17AUTOMAKE_OPTIONS = foreign    # do not require all the GNU file names
[107b01a]18ACLOCAL_AMFLAGS  = -I automake
[f85bc15]19
[bcadb26]20include $(top_srcdir)/tools/build/cfa.make
[dc8511c]21
[e2887a9]22DEFAULT_INCLUDES = -I${abs_srcdir}
[74cfe054]23
[4daf79f]24debug ?= yes
25installed ?= no
[e2887a9]26ARCH=${if ${arch},"--arch=${arch}"}
[dcfedca]27archiveerrors=
[cc640aad]28
[36fbaeca]29DEBUG_FLAGS=-debug -g -O0
[e3a5a73]30
[ff7b2de]31quick_test=avl_test operators numericConstants expression enum array typeof cast raii/dtor-early-exit raii/init_once attributes meta/dumpable
[be65cca]32
[0ad0c55]33concurrent=
[b90aace]34timeouts=
[be65cca]35
[e2887a9]36TEST_PY = python3 ${builddir}/test.py
[f85bc15]37
[ef7d253]38# applies to both programs
[d65f92c]39# since automake doesn't have support for CFA we have to
[e2887a9]40AM_CFLAGS = ${if ${test}, 2> ${test}, } \
41        -fdebug-prefix-map=${abspath ${abs_srcdir}}= \
[87fc1b4]42        -fdebug-prefix-map=/tmp= \
[0a19c51]43        -fno-diagnostics-show-caret \
[b8f6002]44        -g \
45        -Wall \
[850aff1]46        -Werror=return-type \
[b8f6002]47        -Wno-unused-function \
[36fbaeca]48        -Wno-psabi \
[b44959f]49        -quiet @CFA_FLAGS@
[7c03d6d]50
[7215000]51AM_CFAFLAGS = -XCFA --deterministic-out
52
[158b026]53# get the desired cfa to test
[e2887a9]54TARGET_CFA = ${if ${filter ${installed},yes}, @CFACC_INSTALL@, @CFACC@}
[158b026]55
[34e1494]56# adjust CC to current flags
[e2887a9]57CC = LC_ALL=C ${if ${DISTCC_CFA_PATH},distcc ${DISTCC_CFA_PATH} ${ARCH_FLAGS} ,${TARGET_CFA} ${DEBUG_FLAGS} ${ARCH_FLAGS}}
58CFACC = ${CC}
[ef7d253]59
[34e1494]60# get local binary for depedencies
61CFACCBIN = @CFACC@
62
63# adjusted CC but without the actual distcc call
[e2887a9]64CFACCLOCAL = ${if ${DISTCC_CFA_PATH},${DISTCC_CFA_PATH} ${ARCH_FLAGS} ,${TARGET_CFA} ${DEBUG_FLAGS} ${ARCH_FLAGS}}
65CFACCLINK = ${CFACCLOCAL} -quiet ${if ${test}, 2> ${test}, } ${${shell echo "${@}_FLAGSLD" | sed 's/-\|\//_/g'}}
[34e1494]66
[e2887a9]67PRETTY_PATH=mkdir -p ${dir ${abspath ${@}}} && cd ${srcdir} &&
[f7d3215]68
[e2887a9]69.PHONY : list .validate .test_makeflags
70.INTERMEDIATE : .validate .validate.cfa .test_makeflags
[258aaab8]71EXTRA_PROGRAMS = avl_test linkonce linking/mangling/anon .dummy_hack # build but do not install
[a468e1e9]72EXTRA_DIST = test.py \
73        pybin/__init__.py \
74        pybin/print-core.gdb \
75        pybin/settings.py \
76        pybin/test_run.py \
77        pybin/tools.py \
78        long_tests.hfa \
[d0fa494]79        avltree/avl-private.h \
80        avltree/avl.h \
81        concurrent/clib_tls.c \
82        concurrent/clib.c \
[d0a00a5a]83        configs/.in/parseconfig-all.txt \
84        configs/.in/parseconfig-errors.txt \
85        configs/.in/parseconfig-missing.txt \
[d0fa494]86        exceptions/except-io.hfa \
87        exceptions/with-threads.hfa \
[b44959f]88        io/.in/io.data \
[3bd5ca7]89        io/.in/many_read.data \
[d0fa494]90        meta/fork+exec.hfa \
[dbd47d6]91        concurrent/unified_locking/mutex_test.hfa \
[35d1de5]92        concurrent/channels/parallel_harness.hfa
[a468e1e9]93
94dist-hook:
95        echo "Gathering test files"
[e2887a9]96        for file in `${TEST_PY} --list-dist`; do \
97                if test -f ${srcdir}/$${file}; then \
98                        ${MKDIR_P} $$(dirname ${distdir}/$${file}); \
99                        cp -df ${srcdir}/$${file} ${distdir}/$${file}; \
[a468e1e9]100                fi; \
101        done
[44f44617]102
[107b01a]103avl_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
[aff7e86]104linkonce_SOURCES = link-once/main.cfa link-once/partner.cfa
[258aaab8]105linking_mangling_anon_SOURCES = linking/mangling/header.hfa linking/mangling/lib.cfa linking/mangling/main.cfa
[2b10f95]106# automake doesn't know we still need C/CPP rules so pretend like we have a C program
[b7fe2e6]107nodist__dummy_hack_SOURCES = .dummy_hack.c .dummy_hackxx.cpp
[a0dcd2e]108
[73abe95]109#----------------------------------------------------------------------------------------------------------------
[4daf79f]110
[c083c3d]111all-local : # This name is important to automake and implies the default build target.
[b3ce76f]112        @+${TEST_PY} --debug=${debug} --install=${installed} --invariant --archive-errors=${archiveerrors} ${concurrent} ${timeouts} ${ARCH} --all # '@' => do not echo command (SILENT), '+' => allows recursive make from within python program
[4daf79f]113
114install : all-local # PAB only
115
116tests : all-local
[df42128]117
[4daf79f]118quick :
[e2887a9]119        @+${TEST_PY} --debug=${debug} --install=${installed} --archive-errors=${archiveerrors} ${concurrent} ${timeouts} ${ARCH} ${quick_test}
120
121concurrency :
122        @+${TEST_PY} --debug=${debug} --install=${installed} ${ARCH} -Iconcurrent
123
124list :
125        @+${TEST_PY} --list ${concurrent}
126
127help :
128        @echo "user targets:"
129        @echo "    Run the complete test suite."
130        @echo "    $$ make (null) / tests [debug=yes/no] [installed=yes/no] [arch=x86/x64/arm]"
131        @echo ""
132        @echo "    Run the short (quick) test suite."
133        @echo "    $$ make quick [debug=yes/no] [installed=yes/no] [arch=x86/x64/arm]"
134        @echo ""
135        @echo "    Run the concurrent test suite."
136        @echo "    $$ make concurrency [debug=yes/no] [installed=yes/no] [arch=x86/x64/arm]"
137        @echo ""
138        @echo "    List all tests in the test suite."
139        @echo "    $$ make list"
[927e9ce]140
[2a59655]141mostlyclean-local :
[e2887a9]142        find ${builddir} -not -path './__pycache__/*' -path '*.o' -delete
143        find ${builddir} -not -path './__pycache__/*' -path '*/.err/*.log' -delete
144        find ${builddir} -not -path './__pycache__/*' -path '*/.out/*.log' -delete
145        rm -f ${EXTRA_PROGRAMS}
[2a59655]146        rm -rf __pycache__
147
148distclean-local :
[e2887a9]149        find ${builddir} -path '*.Po' -delete
[927e9ce]150
[fc01219]151.test_makeflags:
[e2887a9]152        @echo "${MAKEFLAGS}"
[fc01219]153
[1e995d6]154.validate: .validate.cfa
[e2887a9]155        ${CFACOMPILE} .validate.cfa -fsyntax-only -Wall -Wextra -Werror
[1e995d6]156
157.validate.cfa:
[e2887a9]158        @echo "int main() { return 0; }" > ${@}
[28582b2]159
[107b01a]160# automake doesn't know we still need C rules so pretend like we have a C program
161.dummy_hack.c:
[e2887a9]162        @echo "int main() { return 0; }" > ${@}
[28582b2]163
[2b10f95]164.dummy_hackxx.cpp:
[e2887a9]165        @echo "int bar() { return 0; }" > ${@}
[026a0f5]166
[73abe95]167#----------------------------------------------------------------------------------------------------------------
[dc8511c]168
[e16797c]169# Use for all tests, make sure the path are correct and all flags are added
[e2887a9]170CFACOMPILETEST=${PRETTY_PATH} ${CFACOMPILE} ${shell realpath --relative-to=${srcdir} ${<}} ${${shell echo "${@}_FLAGSCFA" | sed 's/-\|\//_/g'}}
[d9b499c]171
[e16797c]172#----------------------------------------------------------------------------------------------------------------
[a843067]173
[e16797c]174# implicit rule so not all test require a rule
[15f9c8e]175# split into two steps to support compiling remotely using distcc
[34e1494]176# don't use distcc to do the linking because distcc doesn't do linking
[e2887a9]177% : %.cfa ${CFACCBIN}
178        ${CFACOMPILETEST} -c -o ${abspath ${@}}.o -DIN_DIR="${abspath ${dir ${<}}}/.in/"
179        ${CFACCLINK} ${@}.o -o ${abspath ${@}}
180        rm ${abspath ${@}}.o
[f7d3215]181
[34e1494]182# implicit rule for c++ test
183# convient for testing the testsuite itself but not actuall used
[e16797c]184% : %.cpp
[e2887a9]185        ${PRETTY_PATH} ${CXXCOMPILE} ${shell realpath --relative-to=${srcdir} ${<}} -o ${abspath ${@}}
[4c8f86b3]186
[f7d3215]187#------------------------------------------------------------------------------
[34e1494]188# TARGETS WITH CUSTOM FLAGS
[e16797c]189#------------------------------------------------------------------------------
[34e1494]190# custom libs
191gmp_FLAGSLD= -lgmp
[dc8511c]192
[e16797c]193#------------------------------------------------------------------------------
[34e1494]194# Generated code
195GENERATED_CODE = declarationSpecifier gccExtensions extension attributes functions KRfunctions
[e2887a9]196${GENERATED_CODE} : % : %.cfa ${CFACCBIN}
197        ${CFACOMPILETEST} -CFA -XCFA -p -c -fsyntax-only -o ${abspath ${@}}
[34e1494]198
[e16797c]199#------------------------------------------------------------------------------
200# CUSTOM TARGET
201#------------------------------------------------------------------------------
[66812dd]202# tests that just validate syntax and compiler output should be compared to stderr
[e2887a9]203CFACOMPILE_SYNTAX = ${CFACOMPILETEST} -Wno-unused-variable -Wno-unused-label -c -fsyntax-only -o ${abspath ${@}}
[40c81e5]204
[35d1de5]205SYNTAX_ONLY_CODE = expression typedefRedef variableDeclarator switch numericConstants identFuncDeclarator \
[a1b41e3]206        init1 limits nested-types cast labelledExit array quasiKeyword include/stdincludes include/includes builtins/sync warnings/self-assignment concurrent/waitfor/parse
[e2887a9]207${SYNTAX_ONLY_CODE} : % : %.cfa ${CFACCBIN}
208        ${CFACOMPILE_SYNTAX}
209        ${if ${test}, cp ${test} ${abspath ${@}}, }
[87fc1b4]210
[34e1494]211# expected failures
[e6cfb4e2]212# use custom target since they require a custom define *and* have a name that doesn't match the file
[e2887a9]213alloc-ERROR : alloc.cfa ${CFACCBIN}
214        ${CFACOMPILE_SYNTAX} -DERR1
215        -cp ${test} ${abspath ${@}}
[b93a3de]216
[e2887a9]217init1-ERROR : init1.cfa ${CFACCBIN}
218        ${CFACOMPILE_SYNTAX} -DERR1
219        -cp ${test} ${abspath ${@}}
[ee858bf]220
[e2887a9]221typedefRedef-ERR1 : typedefRedef.cfa ${CFACCBIN}
222        ${CFACOMPILE_SYNTAX} -DERR1
223        -cp ${test} ${abspath ${@}}
[e2c70ab]224
[e2887a9]225nested-types-ERR1 : nested-types.cfa ${CFACCBIN}
226        ${CFACOMPILE_SYNTAX} -DERR1
227        -cp ${test} ${abspath ${@}}
[49e1275]228
[e2887a9]229nested-types-ERR2 : nested-types.cfa ${CFACCBIN}
230        ${CFACOMPILE_SYNTAX} -DERR2
231        -cp ${test} ${abspath ${@}}
[49e1275]232
[e2887a9]233raii/memberCtors-ERR1 : raii/memberCtors.cfa ${CFACCBIN}
234        ${CFACOMPILE_SYNTAX} -DERR1
235        -cp ${test} ${abspath ${@}}
[cdbfab0]236
[e2887a9]237raii/ctor-autogen-ERR1 : raii/ctor-autogen.cfa ${CFACCBIN}
238        ${CFACOMPILE_SYNTAX} -DERR1
239        -cp ${test} ${abspath ${@}}
[80e8582]240
[e2887a9]241raii/dtor-early-exit-ERR1 : raii/dtor-early-exit.cfa ${CFACCBIN}
242        ${CFACOMPILE_SYNTAX} -DERR1
243        -cp ${test} ${abspath ${@}}
[80e8582]244
[e2887a9]245raii/dtor-early-exit-ERR2 : raii/dtor-early-exit.cfa ${CFACCBIN}
246        ${CFACOMPILE_SYNTAX} -DERR2
247        -cp ${test} ${abspath ${@}}
[e16797c]248
[5715d43]249# Exception Tests
250# Test with libcfathread; it changes how storage works.
251
[e2887a9]252exceptions/%-threads : exceptions/%.cfa ${CFACCBIN}
253        ${CFACOMPILETEST} -include exceptions/with-threads.hfa -c -o ${abspath ${@}}.o
254        ${CFACCLOCAL} ${${shell echo "${@}_FLAGSLD" | sed 's/-\|\//_/g'}} ${abspath ${@}}.o -o ${abspath ${@}}
[5715d43]255
[673eb7a]256# Linking tests
257# Meta tests to make sure we see linking errors (can't compile with -O2 since it may multiply number of calls)
[e2887a9]258linking/linkerror : linking/linkerror.cfa ${CFACCBIN}
259        ${CFACOMPILETEST} -O0 -c -o ${abspath ${@}}.o
260        ${CFACCLINK}  -O0 ${@}.o -o ${abspath ${@}}
261        rm ${abspath ${@}}.o
[673eb7a]262
[34e1494]263#------------------------------------------------------------------------------
264# Other targets
Note: See TracBrowser for help on using the repository browser.