source: src/tests/Makefile.am @ a7d151f

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

Updated the concurrency test target

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