source: src/tests/preempt_longrun/Makefile.am @ 0322865c

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

Update longrun test to have consistent times and added missing tests

  • Property mode set to 100644
File size: 1.0 KB
RevLine 
[cc3e4d0]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           : Thierry Delisle
11## Created On       : Fri Jun 16 10:57:34 2017
[f3c1737]12## Last Modified By :
13## Last Modified On :
[cc3e4d0]14## Update Count     : 0
15###############################################################################
16
17repeats=10
[8c680e9]18max_time=30
[f3c1737]19preempt=1_000ul
[cc3e4d0]20
21REPEAT = ${abs_top_srcdir}/tools/repeat -s
22
[8c680e9]23BUILD_FLAGS = -g -Wall -Wno-unused-function -quiet @CFA_FLAGS@ -debug -O2 -DPREEMPTION_RATE=${preempt}
[cc3e4d0]24CFLAGS = ${BUILD_FLAGS}
25CC = @CFA_BINDIR@/@CFA_NAME@
26
[f3c1737]27TESTS = barge block create disjoint enter enter3 processor stack wait yield
[cc3e4d0]28
29.INTERMEDIATE: ${TESTS}
30
31all-local: ${TESTS:=.run}
32
[0e44184]33% : %.c ${CC}
[cc3e4d0]34        ${AM_V_GEN}${CC} ${CFLAGS} ${<} -o ${@}
35
36%.run : %
37        @ time ${REPEAT} $(repeats) timeout ${max_time} ./${<}
38        @ rm ${<}
39        @ echo -e "${<}: SUCCESS\n"
Note: See TracBrowser for help on using the repository browser.