- Timestamp:
- Apr 27, 2017, 12:35:53 PM (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, resolv-new, with_gc
- Children:
- 075d862
- Parents:
- 278516c
- Location:
- src/tests
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
src/tests/Makefile.am
r278516c r592b9fa 28 28 endif 29 29 30 31 30 # applies to both programs 32 31 EXTRA_FLAGS = 33 32 BUILD_FLAGS = -g -Wall -Wno-unused-function @CFA_FLAGS@ ${EXTRA_FLAGS} 34 CFLAGS = 2> .err/${@}.log ${BUILD_FLAGS} 33 TEST_FLAGS = $(if $(test), 2> .err/${@}.log, ) 34 CFLAGS = ${TEST_FLAGS} ${BUILD_FLAGS} 35 35 CC = @CFA_BINDIR@/@CFA_NAME@ 36 36 -
src/tests/Makefile.in
r278516c r592b9fa 125 125 CFA_NAME = @CFA_NAME@ 126 126 CFA_PREFIX = @CFA_PREFIX@ 127 CFLAGS = 2> .err/${@}.log${BUILD_FLAGS}127 CFLAGS = ${TEST_FLAGS} ${BUILD_FLAGS} 128 128 CPP = @CPP@ 129 129 CPPFLAGS = @CPPFLAGS@ … … 231 231 @BUILD_CONCURRENCY_FALSE@concurrent_test = 232 232 @BUILD_CONCURRENCY_TRUE@concurrent_test = coroutine thread monitor multi-monitor sched-int sched-ext preempt 233 TEST_FLAGS = $(if $(test), 2> .err/${@}.log, ) 233 234 234 235 # applies to both programs -
src/tests/test.py
r278516c r592b9fa 130 130 131 131 # build, skipping to next test on error 132 make_ret, _ = sh("""%s EXTRA_FLAGS="-quiet %s" %s 2> %s 1> /dev/null""" % (make_cmd, options, test.name, out_file), dry_run)132 make_ret, _ = sh("""%s test=yes EXTRA_FLAGS="-quiet %s" %s 2> %s 1> /dev/null""" % (make_cmd, options, test.name, out_file), dry_run) 133 133 134 134 # if the make command succeds continue otherwise skip to diff
Note: See TracChangeset
for help on using the changeset viewer.