Changeset 202ad72
- Timestamp:
- Aug 15, 2018, 11:18:53 AM (6 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, no_list, persistent-indexer, pthread-emulation, qualifiedEnum
- Children:
- 8e485801
- Parents:
- 7caea53
- Location:
- tests
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
tests/pybin/tools.py
r7caea53 r202ad72 36 36 37 37 def is_ascii(fname): 38 if settings.dry_run: 39 print("is_ascii: %s" % fname) 40 return True 41 38 42 if not os.path.isfile(fname): 39 43 return False … … 132 136 # helper function to replace patterns in a file 133 137 def file_replace(fname, pat, s_after): 138 if settings.dry_run: 139 print("replacing '%s' with '%s' in %s" % (pat, s_after, fname)) 140 return 141 134 142 file = fileinput.FileInput(fname, inplace=True, backup='.bak') 135 143 for line in file: -
tests/test.py
r7caea53 r202ad72 172 172 173 173 if retcode == 0: 174 fixoutput(out_file) 174 175 if settings.generating : 175 176 # if we are ounly generating the output we still need to check that the test actually exists … … 182 183 else : 183 184 # fetch return code and error from the diff command 184 fixoutput(out_file)185 185 retcode, error = diff(cmp_file, out_file) 186 186
Note: See TracChangeset
for help on using the changeset viewer.