- Timestamp:
- Jun 14, 2018, 11:00:30 AM (7 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, with_gc
- Children:
- ef952d7
- Parents:
- 934d200
- Location:
- src/tests
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
src/tests/.gitignore
r934d200 rd35e796 1 1 .out/ 2 2 .err/ 3 .type -
src/tests/preempt_longrun/Makefile.am
r934d200 rd35e796 25 25 TIME = /usr/bin/time -f "%E" 26 26 27 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) 27 # $(shell ./update-type $(type)) 28 # ./update-type $(type) 29 30 UPDATED_TYPE = $(shell ./update-type $(type)) 31 32 BUILD_FLAGS = -g -Wall -Wno-unused-function -quiet @CFA_FLAGS@ -O2 -DPREEMPTION_RATE=${preempt} -I.. -I. -DTEST_$(shell cat .type | tr a-z A-Z) 28 33 CFLAGS = ${BUILD_FLAGS} 29 34 CC = @CFA_BINDIR@/@CFA_NAME@ … … 45 50 46 51 clean-local: 47 rm -f ${TESTS} core* out.log 52 rm -f ${TESTS} core* out.log .type 48 53 49 % : %.c ${CC} 54 % : %.c ${CC} ${UPDATED_TYPE} 50 55 ${AM_V_GEN}${CC} ${CFLAGS} ${<} $(debug) -o ${@} 51 56 -
src/tests/preempt_longrun/Makefile.in
r934d200 rd35e796 456 456 WATCHDOG = ${abs_top_srcdir}/tools/watchdog 457 457 TIME = /usr/bin/time -f "%E" 458 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) 458 459 # $(shell ./update-type $(type)) 460 # ./update-type $(type) 461 UPDATED_TYPE = $(shell ./update-type $(type)) 462 BUILD_FLAGS = -g -Wall -Wno-unused-function -quiet @CFA_FLAGS@ -O2 -DPREEMPTION_RATE=${preempt} -I.. -I. -DTEST_$(shell cat .type | tr a-z A-Z) 459 463 TESTS = block coroutine create disjoint enter enter3 processor stack wait yield 460 464 all: all-am … … 889 893 890 894 clean-local: 891 rm -f ${TESTS} core* out.log 892 893 % : %.c ${CC} 895 rm -f ${TESTS} core* out.log .type 896 897 % : %.c ${CC} ${UPDATED_TYPE} 894 898 ${AM_V_GEN}${CC} ${CFLAGS} ${<} $(debug) -o ${@} 895 899
Note: See TracChangeset
for help on using the changeset viewer.