source: src/tests/Makefile.am @ eb0aedb

ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsdeferred_resndemanglerenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxnew-astnew-ast-unique-exprnew-envno_listpersistent-indexerpthread-emulationqualifiedEnumresolv-newwith_gc
Last change on this file since eb0aedb was 0ad0c55, checked in by Thierry Delisle <tdelisle@…>, 6 years ago

Updated tests script to handle folders

  • Property mode set to 100644
File size: 3.9 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 : Mon Nov 27 21:34:33 2017
14## Update Count     : 48
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=
23else
24concurrent='-Econcurrent'
25endif
26
27# applies to both programs
28DEBUG_FLAGS =
29
30BUILD_FLAGS = -g -Wall -Wno-unused-function -quiet @CFA_FLAGS@
31if !BUILD_DEBUG
32BUILD_FLAGS += -nodebug
33else
34if !BUILD_RELEASE
35BUILD_FLAGS += -debug
36else
37BUILD_FLAGS += ${DEBUG_FLAGS}
38endif
39endif
40
41TEST_FLAGS = $(if $(test), 2> $(test), )
42AM_CFLAGS = ${TEST_FLAGS} ${BUILD_FLAGS}
43CC = @CFA_BINDIR@/@CFA_NAME@
44
45.PHONY : list
46EXTRA_PROGRAMS = fstream_test vector_test avl_test # build but do not install
47
48fstream_test_SOURCES = fstream_test.c
49fstream_test_CFLAGS = $(if $(test), 2>> $(test), ) ${BUILD_FLAGS}
50
51vector_test_SOURCES = vector/vector_int.c vector/array.c vector/vector_test.c
52vector_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        @+python test.py --debug=${debug} ${concurrent} ${quick_test}
59
60all-tests :
61        @+python 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        @+python test.py --list ${concurrent}
68
69concurrency :
70        @+python test.py --debug=${debug} ${concurrent} ${concurrent_test}
71
72.dummy : .dummy.c @CFA_BINDIR@/@CFA_NAME@
73        ${CC} ${BUILD_FLAGS} -XCFA -n ${<} -o ${@}                              #don't use CFLAGS, this rule is not a real test
74
75
76% : %.c @CFA_BINDIR@/@CFA_NAME@
77        ${CC} ${AM_CFLAGS} ${CFLAGS} ${<} -o ${@}
78
79dtor-early-exit-ERR1: dtor-early-exit.c @CFA_BINDIR@/@CFA_NAME@
80        ${CC} ${AM_CFLAGS} ${CFLAGS} -DERR1 ${<} -o ${@}
81
82dtor-early-exit-ERR2: dtor-early-exit.c @CFA_BINDIR@/@CFA_NAME@
83        ${CC} ${AM_CFLAGS} ${CFLAGS} -DERR2 ${<} -o ${@}
84
85declarationSpecifier: declarationSpecifier.c @CFA_BINDIR@/@CFA_NAME@
86        ${CC} ${AM_CFLAGS} ${CFLAGS} -CFA -XCFA -p ${<} -o ${@}
87
88gccExtensions : gccExtensions.c @CFA_BINDIR@/@CFA_NAME@
89        ${CC} ${AM_CFLAGS} ${CFLAGS} -CFA -XCFA -p ${<} -o ${@}
90
91extension : extension.c @CFA_BINDIR@/@CFA_NAME@
92        ${CC} ${AM_CFLAGS} ${CFLAGS} -CFA -XCFA -p ${<} -o ${@}
93
94attributes : attributes.c @CFA_BINDIR@/@CFA_NAME@
95        ${CC} ${AM_CFLAGS} ${CFLAGS} -CFA -XCFA -p ${<} -o ${@}
96
97functions: functions.c @CFA_BINDIR@/@CFA_NAME@
98        ${CC} ${AM_CFLAGS} ${CFLAGS} -CFA -XCFA -p ${<} -o ${@}
99
100KRfunctions : KRfunctions.c @CFA_BINDIR@/@CFA_NAME@
101        ${CC} ${AM_CFLAGS} ${CFLAGS} -CFA -XCFA -p ${<} -o ${@}
102
103literals : literals.c @CFA_BINDIR@/@CFA_NAME@
104        ${CC} ${AM_CFLAGS} ${CFLAGS} -CFA -XCFA -p ${<} -o ${@}
105
106sched-ext-parse : sched-ext-parse.c @CFA_BINDIR@/@CFA_NAME@
107        ${CC} ${AM_CFLAGS} ${CFLAGS} -CFA -XCFA -p ${<} -o ${@}
108
109gmp : gmp.c @CFA_BINDIR@/@CFA_NAME@
110        ${CC} ${AM_CFLAGS} ${CFLAGS} -lgmp ${<} -o ${@}
111
112memberCtors-ERR1: memberCtors.c @CFA_BINDIR@/@CFA_NAME@
113        ${CC} ${AM_CFLAGS} ${CFLAGS} -DERR1 ${<} -o ${@}
114
115ctor-autogen-ERR1: ctor-autogen.c @CFA_BINDIR@/@CFA_NAME@
116        ${CC} ${AM_CFLAGS} ${CFLAGS} -DERR1 ${<} -o ${@}
117
118completeTypeError : completeTypeError.c @CFA_BINDIR@/@CFA_NAME@
119        ${CC} ${AM_CFLAGS} ${CFLAGS} -DERR1 ${<} -o ${@}
120
121typedefRedef-ERR1: typedefRedef.c @CFA_BINDIR@/@CFA_NAME@
122        ${CC} ${AM_CFLAGS} ${CFLAGS} -DERR1 ${<} -o ${@}
123
124alloc-ERROR: alloc.c @CFA_BINDIR@/@CFA_NAME@
125        ${CC} ${AM_CFLAGS} ${CFLAGS} -DERR1 ${<} -o ${@}
Note: See TracBrowser for help on using the repository browser.