Changeset 25296a3
- Timestamp:
- Jun 16, 2016, 12:24:50 PM (8 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:
- 14d2bdf
- Parents:
- 0f8e4ac (diff), 245510f (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. - Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
Jenkinsfile
r0f8e4ac r25296a3 22 22 23 23 //Compile the project 24 sh 'make -j 8 V=0 install'24 sh 'make -j 8 --no-print-directory V=0 install' 25 25 26 26 build_stage 'Test' -
src/tests/test.py
r0f8e4ac r25296a3 34 34 def run_test_instance(test, dry_run): 35 35 sh("rm -f .out/%s.log" % test, dry_run) 36 sh("rm -f %s " % test, dry_run)36 sh("rm -f %s > /dev/null 2>&1" % test, dry_run) 37 37 38 38 # build, skipping to next test on error 39 sh("make -j 8%s >> .out/%s.log 2>&1" % (test, test), dry_run)39 sh("make -j 1 %s >> .out/%s.log 2>&1" % (test, test), dry_run) 40 40 41 41 # fetch optional input … … 52 52 53 53 # clean the executable 54 sh("rm -f %s " % test, dry_run)54 sh("rm -f %s > /dev/null 2>&1" % test, dry_run) 55 55 56 56 return retcode … … 76 76 def generate_test_expect(test): 77 77 sh("rm -f .out/%s.log" % test, False) 78 sh("rm -f %s " % test, False)78 sh("rm -f %s > /dev/null 2>&1" % test, False) 79 79 80 80 # build, skipping to next test on error … … 88 88 89 89 # clean the executable 90 sh("rm -f %s " % test, False)90 sh("rm -f %s > /dev/null 2>&1" % test, False) 91 91 92 92 def generate_expect(tests) :
Note: See TracChangeset
for help on using the changeset viewer.