Changeset 075d862
- Timestamp:
- Apr 27, 2017, 12:49:56 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:
- e464759
- Parents:
- b98c913 (diff), 592b9fa (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - Location:
- src/tests
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
src/tests/Makefile.am
rb98c913 r075d862 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
rb98c913 r075d862 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
rb98c913 r075d862 136 136 137 137 # build, skipping to next test on error 138 make_ret, _ = sh("""%s EXTRA_FLAGS="-quiet %s" %s 2> %s 1> /dev/null""" % (make_cmd, options, test.name, out_file), dry_run)138 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) 139 139 140 140 # if the make command succeds continue otherwise skip to diff
Note: See TracChangeset
for help on using the changeset viewer.