Changeset 4782b39
- Timestamp:
- Dec 14, 2016, 11:04:22 AM (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:
- 74e5a3aa
- Parents:
- cc640aad
- Location:
- src/tests
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
src/tests/Makefile.am
rcc640aad r4782b39 18 18 19 19 # applies to both programs 20 CFLAGS = -g -Wall -Wno-unused-function @CFA_FLAGS@ # TEMPORARY: does not build with -O2 20 EXTRA_FLAGS = 21 CFLAGS = -g -Wall -Wno-unused-function @CFA_FLAGS@ ${EXTRA_FLAGS} 21 22 CC = @CFA_BINDIR@/cfa 22 23 -
src/tests/Makefile.in
rcc640aad r4782b39 123 123 CFA_LIBDIR = @CFA_LIBDIR@ 124 124 CFA_PREFIX = @CFA_PREFIX@ 125 126 # applies to both programs 127 CFLAGS = -g -Wall -Wno-unused-function @CFA_FLAGS@ # TEMPORARY: does not build with -O2 125 CFLAGS = -g -Wall -Wno-unused-function @CFA_FLAGS@ ${EXTRA_FLAGS} 128 126 CPP = @CPP@ 129 127 CPPFLAGS = @CPPFLAGS@ … … 224 222 top_srcdir = @top_srcdir@ 225 223 debug = yes 224 225 # applies to both programs 226 EXTRA_FLAGS = 226 227 fstream_test_SOURCES = fstream_test.c 227 228 vector_test_SOURCES = vector/vector_int.c vector/array.c vector/vector_test.c -
src/tests/test.py
rcc640aad r4782b39 116 116 117 117 # build, skipping to next test on error 118 make_ret, _ = sh("""%s CFLAGS="-quiet %s" %s 2> %s 1> /dev/null""" % (make_cmd, options, test.name, out_file), dry_run)118 make_ret, _ = sh("""%s EXTRA_FLAGS="-quiet %s" %s 2> %s 1> /dev/null""" % (make_cmd, options, test.name, out_file), dry_run) 119 119 120 120 # if the make command succeds continue otherwise skip to diff
Note: See TracChangeset
for help on using the changeset viewer.