source: src/tests/Makefile.am@ 2fdbb3b

ADT aaron-thesis arm-eh ast-experimental cleanup-dtors deferred_resn demangler enum forall-pointer-decay jacob/cs343-translation jenkins-sandbox new-ast new-ast-unique-expr new-env no_list persistent-indexer pthread-emulation qualifiedEnum resolv-new with_gc
Last change on this file since 2fdbb3b was 7416d46a, checked in by Thierry Delisle <tdelisle@…>, 8 years ago

Merge branch 'master' of plg.uwaterloo.ca:software/cfa/cfa-cc

  • Property mode set to 100644
File size: 3.8 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=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 avl_test # build but do not install
47
48fstream_test_SOURCES = fstream_test.c
49fstream_test_CFLAGS = $(if $(test), 2>> $(test), ) ${BUILD_FLAGS}
50
51avl_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
52avl_test_CFLAGS = $(if $(test), 2>> $(test), ) ${BUILD_FLAGS}
53
54all-local :
55 @+python test.py --debug=${debug} ${concurrent} ${quick_test}
56
57all-tests :
58 @+python test.py --all --debug=${debug} ${concurrent} # '@' => do not echo command (SILENT), '+' => allows recursive make from within python program
59
60clean-local :
61 rm -f ${EXTRA_PROGRAMS}
62
63list :
64 @+python test.py --list ${concurrent}
65
66concurrency :
67 @+python test.py --debug=${debug} -Iconcurrent
68
69.dummy : .dummy.c @CFA_BINDIR@/@CFA_NAME@
70 ${CC} ${BUILD_FLAGS} -XCFA -n ${<} -o ${@} #don't use CFLAGS, this rule is not a real test
71
72
73% : %.c @CFA_BINDIR@/@CFA_NAME@
74 ${CC} ${AM_CFLAGS} ${CFLAGS} ${<} -o ${@}
75
76declarationSpecifier: declarationSpecifier.c @CFA_BINDIR@/@CFA_NAME@
77 ${CC} ${AM_CFLAGS} ${CFLAGS} -CFA -XCFA -p ${<} -o ${@}
78
79gccExtensions : gccExtensions.c @CFA_BINDIR@/@CFA_NAME@
80 ${CC} ${AM_CFLAGS} ${CFLAGS} -CFA -XCFA -p ${<} -o ${@}
81
82extension : extension.c @CFA_BINDIR@/@CFA_NAME@
83 ${CC} ${AM_CFLAGS} ${CFLAGS} -CFA -XCFA -p ${<} -o ${@}
84
85attributes : attributes.c @CFA_BINDIR@/@CFA_NAME@
86 ${CC} ${AM_CFLAGS} ${CFLAGS} -CFA -XCFA -p ${<} -o ${@}
87
88functions: functions.c @CFA_BINDIR@/@CFA_NAME@
89 ${CC} ${AM_CFLAGS} ${CFLAGS} -CFA -XCFA -p ${<} -o ${@}
90
91KRfunctions : KRfunctions.c @CFA_BINDIR@/@CFA_NAME@
92 ${CC} ${AM_CFLAGS} ${CFLAGS} -CFA -XCFA -p ${<} -o ${@}
93
94literals : literals.c @CFA_BINDIR@/@CFA_NAME@
95 ${CC} ${AM_CFLAGS} ${CFLAGS} -CFA -XCFA -p ${<} -o ${@}
96
97sched-ext-parse : sched-ext-parse.c @CFA_BINDIR@/@CFA_NAME@
98 ${CC} ${AM_CFLAGS} ${CFLAGS} -CFA -XCFA -p ${<} -o ${@}
99
100gmp : gmp.c @CFA_BINDIR@/@CFA_NAME@
101 ${CC} ${AM_CFLAGS} ${CFLAGS} -lgmp ${<} -o ${@}
102
103completeTypeError : completeTypeError.c @CFA_BINDIR@/@CFA_NAME@
104 ${CC} ${AM_CFLAGS} ${CFLAGS} -DERR1 ${<} -o ${@}
105
106typedefRedef-ERR1: typedefRedef.c @CFA_BINDIR@/@CFA_NAME@
107 ${CC} ${AM_CFLAGS} ${CFLAGS} -DERR1 ${<} -o ${@}
108
109alloc-ERROR: alloc.c @CFA_BINDIR@/@CFA_NAME@
110 ${CC} ${AM_CFLAGS} ${CFLAGS} -DERR1 ${<} -o ${@}
111
112# Constructor/destructor tests
113raii/dtor-early-exit-ERR1: raii/dtor-early-exit.c @CFA_BINDIR@/@CFA_NAME@
114 ${CC} ${AM_CFLAGS} ${CFLAGS} -DERR1 ${<} -o ${@}
115
116raii/dtor-early-exit-ERR2: raii/dtor-early-exit.c @CFA_BINDIR@/@CFA_NAME@
117 ${CC} ${AM_CFLAGS} ${CFLAGS} -DERR2 ${<} -o ${@}
118
119raii/memberCtors-ERR1: raii/memberCtors.c @CFA_BINDIR@/@CFA_NAME@
120 ${CC} ${AM_CFLAGS} ${CFLAGS} -DERR1 ${<} -o ${@}
121
122raii/ctor-autogen-ERR1: raii/ctor-autogen.c @CFA_BINDIR@/@CFA_NAME@
123 ${CC} ${AM_CFLAGS} ${CFLAGS} -DERR1 ${<} -o ${@}
124
Note: See TracBrowser for help on using the repository browser.