source: src/tests/Makefile.am @ 617b4b2

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 617b4b2 was 617b4b2, checked in by Thierry Delisle <tdelisle@…>, 7 years ago

Updated concurrency test target

  • Property mode set to 100644
File size: 4.1 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
[cd218e8]13## Last Modified On : Mon Sep 11 16:17:16 2017
14## Update Count     : 45
[ef7d253]15###############################################################################
16
[cc640aad]17debug=yes
18
[e325958]19quick_test=vector_test avl_test operators numericConstants expression enum array typeof cast dtor-early-exit init_once attributes
[be65cca]20
21if BUILD_CONCURRENCY
[ec95d11]22concurrent = yes
23quick_test += coroutine thread monitor
[12914e9]24concurrent_test =        \
25        coroutine          \
26        thread             \
27        monitor            \
28        multi-monitor      \
29        preempt            \
30        sched-int-block    \
31        sched-int-disjoint \
32        sched-int-wait     \
33        sched-ext-barge    \
[617b4b2]34        sched-ext-dtor     \
[12914e9]35        sched-ext-else     \
36        sched-ext-parse    \
37        sched-ext-recurse  \
38        sched-ext-statment \
39        sched-ext-when
40
[be65cca]41else
42concurrent=no
[026a0f5]43concurrent_test=
[be65cca]44endif
45
[ef7d253]46# applies to both programs
[b5f9829]47DEBUG_FLAGS =
[7c03d6d]48
[b5f9829]49BUILD_FLAGS = -g -Wall -Wno-unused-function -quiet @CFA_FLAGS@
50if !BUILD_DEBUG
51BUILD_FLAGS += -nodebug
52else
53if !BUILD_RELEASE
54BUILD_FLAGS += -debug
55else
[7c03d6d]56BUILD_FLAGS += ${DEBUG_FLAGS}
[b5f9829]57endif
58endif
59
[592b9fa]60TEST_FLAGS = $(if $(test), 2> .err/${@}.log, )
[44f44617]61AM_CFLAGS = ${TEST_FLAGS} ${BUILD_FLAGS}
[df47e2f]62CC = @CFA_BINDIR@/@CFA_NAME@
[ef7d253]63
[927e9ce]64.PHONY : list
[7f612112]65EXTRA_PROGRAMS = fstream_test vector_test avl_test # build but do not install
[927e9ce]66
[ef7d253]67fstream_test_SOURCES = fstream_test.c
[44f44617]68fstream_test_CFLAGS = $(if $(test), 2>> .err/fstream_test.log, ) ${BUILD_FLAGS}
69
[1c31f68]70vector_test_SOURCES = vector/vector_int.c vector/array.c vector/vector_test.c
[44f44617]71vector_test_CFLAGS = $(if $(test), 2>> .err/vector_test.log, ) ${BUILD_FLAGS}
72
[ef7d253]73avl_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
[44f44617]74avl_test_CFLAGS = $(if $(test), 2>> .err/avl_test.log, ) ${BUILD_FLAGS}
[a0dcd2e]75
[927e9ce]76all-local :
[871b664]77        @+python test.py --debug=${debug} --concurrent=${concurrent} ${quick_test}
[df42128]78
79all-tests :
[be65cca]80        @+python test.py --all --debug=${debug} --concurrent=${concurrent}              # '@' => do not echo command (SILENT), '+' => allows recursive make from within python program
[927e9ce]81
82clean-local :
[a6dd5b0]83        rm -f ${EXTRA_PROGRAMS}
[927e9ce]84
85list :
[be65cca]86        @+python test.py --list --concurrent=${concurrent}
[927e9ce]87
[026a0f5]88concurrency :
89        @+python test.py --debug=${debug} --concurrent=${concurrent} ${concurrent_test}
90
[8f8af30]91.dummy : .dummy.c @CFA_BINDIR@/@CFA_NAME@
[47f9422]92        ${CC} ${BUILD_FLAGS} -XCFA -n ${<} -o ${@}                              #don't use CFLAGS, this rule is not a real test
[7895d46]93
[8f8af30]94
95% : %.c @CFA_BINDIR@/@CFA_NAME@
[44f44617]96        ${CC} ${AM_CFLAGS} ${CFLAGS} ${<} -o ${@}
[8f8af30]97
98dtor-early-exit-ERR1: dtor-early-exit.c @CFA_BINDIR@/@CFA_NAME@
[44f44617]99        ${CC} ${AM_CFLAGS} ${CFLAGS} -DERR1 ${<} -o ${@}
[85f0713]100
[8f8af30]101dtor-early-exit-ERR2: dtor-early-exit.c @CFA_BINDIR@/@CFA_NAME@
[44f44617]102        ${CC} ${AM_CFLAGS} ${CFLAGS} -DERR2 ${<} -o ${@}
[85f0713]103
[8f8af30]104declarationSpecifier: declarationSpecifier.c @CFA_BINDIR@/@CFA_NAME@
[44f44617]105        ${CC} ${AM_CFLAGS} ${CFLAGS} -CFA -XCFA -p -XCFA -L ${<} -o ${@}
[950f7a7]106
[8f8af30]107gccExtensions : gccExtensions.c @CFA_BINDIR@/@CFA_NAME@
[44f44617]108        ${CC} ${AM_CFLAGS} ${CFLAGS} -CFA -XCFA -p -XCFA -L ${<} -o ${@}
[d9b499c]109
[8f8af30]110extension : extension.c @CFA_BINDIR@/@CFA_NAME@
[44f44617]111        ${CC} ${AM_CFLAGS} ${CFLAGS} -CFA -XCFA -p -XCFA -L ${<} -o ${@}
[d9b499c]112
[8f8af30]113attributes : attributes.c @CFA_BINDIR@/@CFA_NAME@
[44f44617]114        ${CC} ${AM_CFLAGS} ${CFLAGS} -CFA -XCFA -p -XCFA -L ${<} -o ${@}
[c0aa336]115
[8f8af30]116KRfunctions : KRfunctions.c @CFA_BINDIR@/@CFA_NAME@
[44f44617]117        ${CC} ${AM_CFLAGS} ${CFLAGS} -CFA -XCFA -p -XCFA -L ${<} -o ${@}
[3a5131ed]118
[cd218e8]119literals : literals.c @CFA_BINDIR@/@CFA_NAME@
120        ${CC} ${AM_CFLAGS} ${CFLAGS} -CFA -XCFA -p -XCFA -L ${<} -o ${@}
121
[a843067]122sched-ext-parse : sched-ext-parse.c @CFA_BINDIR@/@CFA_NAME@
123        ${CC} ${AM_CFLAGS} ${CFLAGS} -CFA -XCFA -p -XCFA -L ${<} -o ${@}
124
[8f8af30]125gmp : gmp.c @CFA_BINDIR@/@CFA_NAME@
[44f44617]126        ${CC} ${AM_CFLAGS} ${CFLAGS} -lgmp ${<} -o ${@}
[4c8f86b]127
[8f8af30]128memberCtors-ERR1: memberCtors.c @CFA_BINDIR@/@CFA_NAME@
[44f44617]129        ${CC} ${AM_CFLAGS} ${CFLAGS} -DERR1 ${<} -o ${@}
[486341f]130
[8f8af30]131completeTypeError : completeTypeError.c @CFA_BINDIR@/@CFA_NAME@
[44f44617]132        ${CC} ${AM_CFLAGS} ${CFLAGS} -DERR1 ${<} -o ${@}
Note: See TracBrowser for help on using the repository browser.