source: src/tests/preempt_longrun/Makefile.am @ 827a190

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

Added longrun tests for coroutines and disabled preemption during coroutine context switch

  • Property mode set to 100644
File size: 1.3 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
[d6ff3ff]18max_time=600
[f3c1737]19preempt=1_000ul
[827a190]20debug=-debug
[cc3e4d0]21
[1449d83]22REPEAT = ${abs_top_srcdir}/tools/repeat
[0394c31]23TIME = /usr/bin/time -f "%E"
[cc3e4d0]24
[827a190]25BUILD_FLAGS = -g -Wall -Wno-unused-function -quiet @CFA_FLAGS@ -O2 -DPREEMPTION_RATE=${preempt}
[cc3e4d0]26CFLAGS = ${BUILD_FLAGS}
27CC = @CFA_BINDIR@/@CFA_NAME@
28
[827a190]29TESTS = block coroutine create disjoint enter enter3 processor stack wait yield
[cc3e4d0]30
31.INTERMEDIATE: ${TESTS}
32
33all-local: ${TESTS:=.run}
34
[0764cfb]35clean-local:
36        rm -f ${TESTS}
37
[0e44184]38% : %.c ${CC}
[827a190]39        ${AM_V_GEN}${CC} ${CFLAGS} ${<} $(debug) -o ${@}
[cc3e4d0]40
[1449d83]41%.run : % ${REPEAT}
42        @ time ${REPEAT} -r out.log -i -s $(repeats) timeout ${max_time} ./${<}
[cc3e4d0]43        @ rm ${<}
[1449d83]44        @ echo -e "${<}: SUCCESS\n"
45
[0394c31]46%.time : % ${REPEAT}
47        @ ${REPEAT} -i -s -- $(repeats) $(TIME) -a -o times.log ./${<}
48        @ rm ${<}
49        @ echo -e "${<}: SUCCESS\n"
50
51${REPEAT}:
[1449d83]52        @+make -C ${abs_top_srcdir}/tools/
Note: See TracBrowser for help on using the repository browser.