ADT
aaron-thesis
arm-eh
ast-experimental
cleanup-dtors
deferred_resn
demangler
enum
forall-pointer-decay
jacob/cs343-translation
jenkins-sandbox
new-ast
new-ast-unique-expr
new-env
no_list
persistent-indexer
pthread-emulation
qualifiedEnum
resolv-new
with_gc
Last change
on this file since c3f551b was 8b28a52, checked in by Thierry Delisle <tdelisle@…>, 8 years ago |
removed barge test since it had inconsistent results and doesn't really has a reason to be
|
-
Property mode
set to
100644
|
File size:
1.1 KB
|
Rev | Line | |
---|
[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 |
|
---|
| 17 | repeats=10
|
---|
[d6ff3ff] | 18 | max_time=600
|
---|
[f3c1737] | 19 | preempt=1_000ul
|
---|
[cc3e4d0] | 20 |
|
---|
| 21 | REPEAT = ${abs_top_srcdir}/tools/repeat -s
|
---|
| 22 |
|
---|
[8c680e9] | 23 | BUILD_FLAGS = -g -Wall -Wno-unused-function -quiet @CFA_FLAGS@ -debug -O2 -DPREEMPTION_RATE=${preempt}
|
---|
[cc3e4d0] | 24 | CFLAGS = ${BUILD_FLAGS}
|
---|
| 25 | CC = @CFA_BINDIR@/@CFA_NAME@
|
---|
| 26 |
|
---|
[8b28a52] | 27 | TESTS = block create disjoint enter enter3 processor stack wait yield
|
---|
[cc3e4d0] | 28 |
|
---|
| 29 | .INTERMEDIATE: ${TESTS}
|
---|
| 30 |
|
---|
| 31 | all-local: ${TESTS:=.run}
|
---|
| 32 |
|
---|
[0764cfb] | 33 | clean-local:
|
---|
| 34 | rm -f ${TESTS}
|
---|
| 35 |
|
---|
[0e44184] | 36 | % : %.c ${CC}
|
---|
[cc3e4d0] | 37 | ${AM_V_GEN}${CC} ${CFLAGS} ${<} -o ${@}
|
---|
| 38 |
|
---|
| 39 | %.run : %
|
---|
| 40 | @ time ${REPEAT} $(repeats) timeout ${max_time} ./${<}
|
---|
| 41 | @ rm ${<}
|
---|
| 42 | @ echo -e "${<}: SUCCESS\n"
|
---|
Note:
See
TracBrowser
for help on using the repository browser.