Changeset 1241851
- Timestamp:
- Mar 28, 2019, 10:22:57 AM (6 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, cleanup-dtors, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- e8fe5e0
- Parents:
- a45fc7b
- Files:
-
- 2 edited
- 14 moved
Legend:
- Unmodified
- Added
- Removed
-
configure
ra45fc7b r1241851 16738 16738 16739 16739 #============================================================================== 16740 ac_config_files="$ac_config_files Makefile driver/Makefile src/Makefile benchmark/Makefile tests/Makefile tests/preempt_longrun/Makefile tools/Makefile tools/prettyprinter/Makefile"16740 ac_config_files="$ac_config_files Makefile driver/Makefile src/Makefile benchmark/Makefile tests/Makefile longrun_tests/Makefile tools/Makefile tools/prettyprinter/Makefile" 16741 16741 16742 16742 … … 17876 17876 "benchmark/Makefile") CONFIG_FILES="$CONFIG_FILES benchmark/Makefile" ;; 17877 17877 "tests/Makefile") CONFIG_FILES="$CONFIG_FILES tests/Makefile" ;; 17878 " tests/preempt_longrun/Makefile") CONFIG_FILES="$CONFIG_FILES tests/preempt_longrun/Makefile" ;;17878 "longrun_tests/Makefile") CONFIG_FILES="$CONFIG_FILES longrun_tests/Makefile" ;; 17879 17879 "tools/Makefile") CONFIG_FILES="$CONFIG_FILES tools/Makefile" ;; 17880 17880 "tools/prettyprinter/Makefile") CONFIG_FILES="$CONFIG_FILES tools/prettyprinter/Makefile" ;; -
configure.ac
ra45fc7b r1241851 211 211 benchmark/Makefile 212 212 tests/Makefile 213 tests/preempt_longrun/Makefile213 longrun_tests/Makefile 214 214 tools/Makefile 215 215 tools/prettyprinter/Makefile -
longrun_tests/Makefile.am
ra45fc7b r1241851 33 33 UPDATED_TYPE = $(shell ./update-type $(type)) 34 34 35 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)35 BUILD_FLAGS = -g -Wall -Wno-unused-function -quiet @CFA_FLAGS@ -O2 -DPREEMPTION_RATE=${preempt} -I../tests -I. -DTEST_$(shell cat .type | tr a-z A-Z) 36 36 CFLAGS = ${BUILD_FLAGS} 37 37 CC = @CFACC@ -
longrun_tests/Makefile.in
ra45fc7b r1241851 91 91 build_triplet = @build@ 92 92 host_triplet = @host@ 93 subdir = tests/preempt_longrun93 subdir = longrun_tests 94 94 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 95 95 am__aclocal_m4_deps = $(top_srcdir)/automake/libtool.m4 \ … … 491 491 # ./update-type $(type) 492 492 UPDATED_TYPE = $(shell ./update-type $(type)) 493 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)493 BUILD_FLAGS = -g -Wall -Wno-unused-function -quiet @CFA_FLAGS@ -O2 -DPREEMPTION_RATE=${preempt} -I../tests -I. -DTEST_$(shell cat .type | tr a-z A-Z) 494 494 TESTS = block coroutine create disjoint enter enter3 processor stack wait yield 495 495 all: all-am … … 506 506 esac; \ 507 507 done; \ 508 echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign tests/preempt_longrun/Makefile'; \508 echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign longrun_tests/Makefile'; \ 509 509 $(am__cd) $(top_srcdir) && \ 510 $(AUTOMAKE) --foreign tests/preempt_longrun/Makefile510 $(AUTOMAKE) --foreign longrun_tests/Makefile 511 511 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status 512 512 @case '$?' in \
Note: See TracChangeset
for help on using the changeset viewer.