source: src/tests/Makefile.am @ d395012

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

Tests should now be out of date if you recompile cforall

  • Property mode set to 100644
File size: 3.2 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
[ec95d11]13## Last Modified On : Thu Jun  8 07:41:43 2017
14## Update Count     : 44
[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
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
[be65cca]25else
26concurrent=no
[026a0f5]27concurrent_test=
[be65cca]28endif
29
[ef7d253]30# applies to both programs
[4782b39]31EXTRA_FLAGS =
[f803a75]32BUILD_FLAGS = -g -Wall -Wno-unused-function -quiet @CFA_FLAGS@ ${EXTRA_FLAGS}
[592b9fa]33TEST_FLAGS = $(if $(test), 2> .err/${@}.log, )
34CFLAGS = ${TEST_FLAGS} ${BUILD_FLAGS}
[df47e2f]35CC = @CFA_BINDIR@/@CFA_NAME@
[ef7d253]36
[927e9ce]37.PHONY : list
[7f612112]38EXTRA_PROGRAMS = fstream_test vector_test avl_test # build but do not install
[927e9ce]39
[ef7d253]40fstream_test_SOURCES = fstream_test.c
[1c31f68]41vector_test_SOURCES = vector/vector_int.c vector/array.c vector/vector_test.c
[ef7d253]42avl_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
[a0dcd2e]43
[927e9ce]44all-local :
[871b664]45        @+python test.py --debug=${debug} --concurrent=${concurrent} ${quick_test}
[df42128]46
47all-tests :
[be65cca]48        @+python test.py --all --debug=${debug} --concurrent=${concurrent}              # '@' => do not echo command (SILENT), '+' => allows recursive make from within python program
[927e9ce]49
50clean-local :
[a6dd5b0]51        rm -f ${EXTRA_PROGRAMS}
[927e9ce]52
53list :
[be65cca]54        @+python test.py --list --concurrent=${concurrent}
[927e9ce]55
[026a0f5]56concurrency :
57        @+python test.py --debug=${debug} --concurrent=${concurrent} ${concurrent_test}
58
[8f8af30]59.dummy : .dummy.c @CFA_BINDIR@/@CFA_NAME@
[47f9422]60        ${CC} ${BUILD_FLAGS} -XCFA -n ${<} -o ${@}                              #don't use CFLAGS, this rule is not a real test
[7895d46]61
[8f8af30]62
63% : %.c @CFA_BINDIR@/@CFA_NAME@
64        ${CC} ${CFLAGS} ${<} -o ${@}
65
66dtor-early-exit-ERR1: dtor-early-exit.c @CFA_BINDIR@/@CFA_NAME@
[85f0713]67        ${CC} ${CFLAGS} -DERR1 ${<} -o ${@}
68
[8f8af30]69dtor-early-exit-ERR2: dtor-early-exit.c @CFA_BINDIR@/@CFA_NAME@
[85f0713]70        ${CC} ${CFLAGS} -DERR2 ${<} -o ${@}
71
[8f8af30]72declarationSpecifier: declarationSpecifier.c @CFA_BINDIR@/@CFA_NAME@
[9923861]73        ${CC} ${CFLAGS} -CFA -XCFA -p -XCFA -L ${<} -o ${@}
[950f7a7]74
[8f8af30]75gccExtensions : gccExtensions.c @CFA_BINDIR@/@CFA_NAME@
[9923861]76        ${CC} ${CFLAGS} -CFA -XCFA -p -XCFA -L ${<} -o ${@}
[d9b499c]77
[8f8af30]78extension : extension.c @CFA_BINDIR@/@CFA_NAME@
[9923861]79        ${CC} ${CFLAGS} -CFA -XCFA -p -XCFA -L ${<} -o ${@}
[d9b499c]80
[8f8af30]81attributes : attributes.c @CFA_BINDIR@/@CFA_NAME@
[9923861]82        ${CC} ${CFLAGS} -CFA -XCFA -p -XCFA -L ${<} -o ${@}
[c0aa336]83
[8f8af30]84KRfunctions : KRfunctions.c @CFA_BINDIR@/@CFA_NAME@
[9923861]85        ${CC} ${CFLAGS} -CFA -XCFA -p -XCFA -L ${<} -o ${@}
[3a5131ed]86
[8f8af30]87gmp : gmp.c @CFA_BINDIR@/@CFA_NAME@
[4c8f86b]88        ${CC} ${CFLAGS} -lgmp ${<} -o ${@}
89
[8f8af30]90memberCtors-ERR1: memberCtors.c @CFA_BINDIR@/@CFA_NAME@
[6a1bdfd]91        ${CC} ${CFLAGS} -DERR1 ${<} -o ${@}
[486341f]92
[8f8af30]93completeTypeError : completeTypeError.c @CFA_BINDIR@/@CFA_NAME@
[66f8528]94        ${CC} ${CFLAGS} -DERR1 ${<} -o ${@}
Note: See TracBrowser for help on using the repository browser.