Changeset 4dcea3f for src/tests/test.py
- Timestamp:
- Jun 28, 2016, 3:33:05 PM (10 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, ctor, deferred_resn, demangler, enum, forall-pointer-decay, gc_noraii, jacob/cs343-translation, jenkins-sandbox, master, memory, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
- Children:
- 982d63f
- Parents:
- e39aa0f (diff), 2e04c7b3 (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. - File:
-
- 1 edited
-
src/tests/test.py (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/tests/test.py
re39aa0f r4dcea3f 61 61 62 62 # build, skipping to next test on error 63 make_ret = sh(" make -j 8 %s 2> %s 1> /dev/null" % (test, out_file), dry_run)63 make_ret = sh("%s %s 2> %s 1> /dev/null" % (make_cmd, test, out_file), dry_run) 64 64 65 65 if make_ret == 0 : … … 84 84 85 85 def run_tests(tests, generate, dry_run) : 86 sh( 'make clean > /dev/null 2>&1', dry_run)86 sh("%s clean > /dev/null 2>&1" % make_cmd, dry_run) 87 87 sh('mkdir -p .out .expect', dry_run) 88 88 … … 102 102 print( "Done" ) 103 103 104 sh( 'make clean > /dev/null 2>&1', dry_run)104 sh("%s clean > /dev/null 2>&1" % make_cmd, dry_run) 105 105 106 106 return 1 if failed else 0 … … 141 141 sys.exit(1) 142 142 143 tests.sort() 144 make_flags = environ.get('MAKEFLAGS') 145 make_cmd = "make" if make_flags and "-j" in make_flags else "make -j8" 146 143 147 if options.list : 144 148 print("\n".join(tests))
Note:
See TracChangeset
for help on using the changeset viewer.