Changeset 7bdcac1 for src/tests/preempt_longrun/Makefile.in
- Timestamp:
- Jun 11, 2018, 10:16:04 AM (8 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, stuck-waitfor-destruct, with_gc
- Children:
- 3fc59bdb
- Parents:
- 85b1deb
- File:
-
- 1 edited
-
src/tests/preempt_longrun/Makefile.in (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/tests/preempt_longrun/Makefile.in
r85b1deb r7bdcac1 452 452 preempt = 10ul\`ms 453 453 debug = -debug 454 type = LONG 454 455 REPEAT = ${abs_top_srcdir}/tools/repeat 456 WATCHDOG = ${abs_top_srcdir}/tools/watchdog 455 457 TIME = /usr/bin/time -f "%E" 456 BUILD_FLAGS = -g -Wall -Wno-unused-function -quiet @CFA_FLAGS@ -O2 -DPREEMPTION_RATE=${preempt} - DLONG_TEST458 BUILD_FLAGS = -g -Wall -Wno-unused-function -quiet @CFA_FLAGS@ -O2 -DPREEMPTION_RATE=${preempt} -I.. -I. -DTEST_$(shell echo $(type) | tr a-z A-Z) 457 459 TESTS = block coroutine create disjoint enter enter3 processor stack wait yield 458 460 all: all-am … … 873 875 874 876 875 .INTERMEDIATE: ${TESTS}877 # .INTERMEDIATE: ${TESTS} 876 878 877 879 all-local: ${TESTS:=.run} 880 881 runall : ${TESTS:=.run} 882 @ echo "All programs terminated normally" 883 884 watchall : ${TESTS:=.watch} 885 @ echo "All programs terminated normally" 886 887 compileall : ${TESTS} 888 @ echo "Compiled" 878 889 879 890 clean-local: … … 888 899 @ echo -e "${<}: SUCCESS\n" 889 900 901 %.watch : % ${WATCHDOG} 902 @ time ${WATCHDOG} ./${<} 903 @ rm ${<} 904 @ echo -e "${<}: SUCCESS\n" 905 890 906 %.time : % ${REPEAT} 891 907 @ ${REPEAT} -i -s -- $(repeats) $(TIME) -a -o times.log ./${<} … … 893 909 @ echo -e "${<}: SUCCESS\n" 894 910 895 ${REPEAT}: 911 ${REPEAT}: ${abs_top_srcdir}/tools/Makefile 912 @+make -C ${abs_top_srcdir}/tools/ 913 914 ${WATCHDOG}: ${abs_top_srcdir}/tools/Makefile 896 915 @+make -C ${abs_top_srcdir}/tools/ 897 916
Note:
See TracChangeset
for help on using the changeset viewer.