source: src/tests/preempt_longrun/Makefile.am @ c20b0fea

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

Added timing target for long running test

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