Changeset 8b52686
- Timestamp:
- Jun 22, 2016, 4:35:42 PM (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:
- e7aed49
- Parents:
- 10dc7491 (diff), b015035 (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:
-
- 1 deleted
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
Jenkinsfile
r10dc7491 r8b52686 33 33 dir ('src/tests') { 34 34 if (full_build) { 35 sh ' python test.py --all'35 sh 'make all-tests' 36 36 } 37 37 else { 38 sh ' ./runTests.sh'38 sh 'make' 39 39 } 40 40 } … … 188 188 cfa_build(doPromoteBuild2DoLang) 189 189 190 //Compile using gcc-5 191 currentCC = new CC_Desc('gcc-5', 'g++-5', 'gcc-5') 192 cfa_build(doPromoteBuild2DoLang) 193 194 //Compile using gcc-4.9 195 currentCC = new CC_Desc('gcc-6', 'g++-6', 'gcc-6') 196 cfa_build(doPromoteBuild2DoLang) 190 if( doPromoteBuild2DoLang ) { 191 //Compile using gcc-5 192 currentCC = new CC_Desc('gcc-5', 'g++-5', 'gcc-5') 193 cfa_build(true) 194 195 //Compile using gcc-4.9 196 currentCC = new CC_Desc('gcc-6', 'g++-6', 'gcc-6') 197 cfa_build(true) 198 } 197 199 198 200 //Compile latex documentation -
src/tests/Makefile.am
r10dc7491 r8b52686 27 27 28 28 all-local : 29 python test.py vector_test avl_test Operators NumericConstants Expression Enum AsmName Array Typeof Cast 30 31 all-tests : 29 32 python test.py --all 30 33 -
src/tests/Makefile.in
r10dc7491 r8b52686 634 634 635 635 all-local : 636 python test.py vector_test avl_test Operators NumericConstants Expression Enum AsmName Array Typeof Cast 637 638 all-tests : 636 639 python test.py --all 637 640 -
src/tests/test.py
r10dc7491 r8b52686 2 2 from __future__ import print_function 3 3 4 from os import listdir 4 from os import listdir, environ 5 5 from os.path import isfile, join, splitext 6 6 from subprocess import Popen, PIPE, STDOUT 7 7 8 8 import argparse 9 import os 10 import re 9 11 import sys 10 12 … … 27 29 proc.communicate() 28 30 return proc.returncode 31 32 def file_replace(fname, pat, s_after): 33 # first, see if the pattern is even in the file. 34 with open(fname) as f: 35 if not any(re.search(pat, line) for line in f): 36 return # pattern does not occur in file so we are done. 37 38 # pattern is in the file, so perform replace operation. 39 with open(fname) as f: 40 out_fname = fname + ".tmp" 41 out = open(out_fname, "w") 42 for line in f: 43 out.write(re.sub(pat, s_after, line)) 44 out.close() 45 os.rename(out_fname, fname) 46 47 def fix_MakeLevel(file) : 48 if environ.get('MAKELEVEL') : 49 file_replace(file, "make\[%i\]" % int(environ.get('MAKELEVEL')), 'make' ) 50 29 51 30 52 ################################################################################ … … 49 71 50 72 retcode = 0 73 74 fix_MakeLevel(out_file) 75 51 76 if not generate : 52 77 # diff the output of the files
Note: See TracChangeset
for help on using the changeset viewer.