Changeset 245510f
- Timestamp:
- Jun 16, 2016, 10:39:22 AM (7 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:
- 25296a3, 3c1d702
- Parents:
- d1aa5c0
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
Jenkinsfile
rd1aa5c0 r245510f 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
rd1aa5c0 r245510f 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.