Changeset cc640aad
- Timestamp:
- Dec 13, 2016, 5:56:30 PM (6 years ago)
- Branches:
- aaron-thesis, arm-eh, 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:
- 4782b39
- Parents:
- 6a1bdfd
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
Jenkinsfile
r6a1bdfd rcc640aad 33 33 dir ('src/tests') { 34 34 if (full_build) { 35 sh 'make all-tests' 35 sh 'make all-tests debug=yes' 36 sh 'make all-tests debug=no' 36 37 } 37 38 else { -
src/tests/Makefile.am
r6a1bdfd rcc640aad 15 15 ############################################################################### 16 16 17 debug=yes 18 17 19 # applies to both programs 18 20 CFLAGS = -g -Wall -Wno-unused-function @CFA_FLAGS@ # TEMPORARY: does not build with -O2 … … 30 32 31 33 all-tests : 32 @+python test.py --all # '@' => do not echo command (SILENT), '+' => allows recursive make from within python program34 @+python test.py --all --debug=${debug} # '@' => do not echo command (SILENT), '+' => allows recursive make from within python program 33 35 34 36 clean-local : … … 64 66 memberCtors-ERR1: memberCtors.c 65 67 ${CC} ${CFLAGS} -DERR1 ${<} -o ${@} 66 -
src/tests/Makefile.in
r6a1bdfd rcc640aad 223 223 top_builddir = @top_builddir@ 224 224 top_srcdir = @top_srcdir@ 225 debug = yes 225 226 fstream_test_SOURCES = fstream_test.c 226 227 vector_test_SOURCES = vector/vector_int.c vector/array.c vector/vector_test.c … … 652 653 653 654 all-tests : 654 @+python test.py --all # '@' => do not echo command (SILENT), '+' => allows recursive make from within python program655 @+python test.py --all --debug=${debug} # '@' => do not echo command (SILENT), '+' => allows recursive make from within python program 655 656 656 657 clean-local :
Note: See TracChangeset
for help on using the changeset viewer.