source: src/tests/Makefile.am@ bdeba0b

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 bdeba0b was 44f44617, checked in by Thierry Delisle <tdelisle@…>, 8 years ago

Fix build for 16.04

  • Property mode set to 100644
File size: 3.5 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 : Thu Jun 8 07:41:43 2017
14## Update Count : 44
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 = yes
23quick_test += coroutine thread monitor
24concurrent_test = coroutine thread monitor multi-monitor sched-int-barge sched-int-block sched-int-disjoint sched-int-wait sched-ext sched-ext-multi preempt
25else
26concurrent=no
27concurrent_test=
28endif
29
30# applies to both programs
31EXTRA_FLAGS =
32BUILD_FLAGS = -g -Wall -Wno-unused-function -quiet @CFA_FLAGS@ ${EXTRA_FLAGS}
33TEST_FLAGS = $(if $(test), 2> .err/${@}.log, )
34AM_CFLAGS = ${TEST_FLAGS} ${BUILD_FLAGS}
35CC = @CFA_BINDIR@/@CFA_NAME@
36
37.PHONY : list
38EXTRA_PROGRAMS = fstream_test vector_test avl_test # build but do not install
39
40fstream_test_SOURCES = fstream_test.c
41fstream_test_CFLAGS = $(if $(test), 2>> .err/fstream_test.log, ) ${BUILD_FLAGS}
42
43vector_test_SOURCES = vector/vector_int.c vector/array.c vector/vector_test.c
44vector_test_CFLAGS = $(if $(test), 2>> .err/vector_test.log, ) ${BUILD_FLAGS}
45
46avl_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
47avl_test_CFLAGS = $(if $(test), 2>> .err/avl_test.log, ) ${BUILD_FLAGS}
48
49all-local :
50 @+python test.py --debug=${debug} --concurrent=${concurrent} ${quick_test}
51
52all-tests :
53 @+python test.py --all --debug=${debug} --concurrent=${concurrent} # '@' => do not echo command (SILENT), '+' => allows recursive make from within python program
54
55clean-local :
56 rm -f ${EXTRA_PROGRAMS}
57
58list :
59 @+python test.py --list --concurrent=${concurrent}
60
61concurrency :
62 @+python test.py --debug=${debug} --concurrent=${concurrent} ${concurrent_test}
63
64.dummy : .dummy.c @CFA_BINDIR@/@CFA_NAME@
65 ${CC} ${BUILD_FLAGS} -XCFA -n ${<} -o ${@} #don't use CFLAGS, this rule is not a real test
66
67
68% : %.c @CFA_BINDIR@/@CFA_NAME@
69 ${CC} ${AM_CFLAGS} ${CFLAGS} ${<} -o ${@}
70
71dtor-early-exit-ERR1: dtor-early-exit.c @CFA_BINDIR@/@CFA_NAME@
72 ${CC} ${AM_CFLAGS} ${CFLAGS} -DERR1 ${<} -o ${@}
73
74dtor-early-exit-ERR2: dtor-early-exit.c @CFA_BINDIR@/@CFA_NAME@
75 ${CC} ${AM_CFLAGS} ${CFLAGS} -DERR2 ${<} -o ${@}
76
77declarationSpecifier: declarationSpecifier.c @CFA_BINDIR@/@CFA_NAME@
78 ${CC} ${AM_CFLAGS} ${CFLAGS} -CFA -XCFA -p -XCFA -L ${<} -o ${@}
79
80gccExtensions : gccExtensions.c @CFA_BINDIR@/@CFA_NAME@
81 ${CC} ${AM_CFLAGS} ${CFLAGS} -CFA -XCFA -p -XCFA -L ${<} -o ${@}
82
83extension : extension.c @CFA_BINDIR@/@CFA_NAME@
84 ${CC} ${AM_CFLAGS} ${CFLAGS} -CFA -XCFA -p -XCFA -L ${<} -o ${@}
85
86attributes : attributes.c @CFA_BINDIR@/@CFA_NAME@
87 ${CC} ${AM_CFLAGS} ${CFLAGS} -CFA -XCFA -p -XCFA -L ${<} -o ${@}
88
89KRfunctions : KRfunctions.c @CFA_BINDIR@/@CFA_NAME@
90 ${CC} ${AM_CFLAGS} ${CFLAGS} -CFA -XCFA -p -XCFA -L ${<} -o ${@}
91
92gmp : gmp.c @CFA_BINDIR@/@CFA_NAME@
93 ${CC} ${AM_CFLAGS} ${CFLAGS} -lgmp ${<} -o ${@}
94
95memberCtors-ERR1: memberCtors.c @CFA_BINDIR@/@CFA_NAME@
96 ${CC} ${AM_CFLAGS} ${CFLAGS} -DERR1 ${<} -o ${@}
97
98completeTypeError : completeTypeError.c @CFA_BINDIR@/@CFA_NAME@
99 ${CC} ${AM_CFLAGS} ${CFLAGS} -DERR1 ${<} -o ${@}
Note: See TracBrowser for help on using the repository browser.