Changeset 122cac7
- Timestamp:
- Jun 21, 2016, 3:05:59 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:
- 48a8127
- Parents:
- 7ba3a25
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/tests/test.py
r7ba3a25 r122cac7 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.