- Timestamp:
- Nov 12, 2020, 12:55:06 PM (4 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- d6ad99e
- Parents:
- ead174a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
tests/test.py
read174a rad4832f1 99 99 100 100 # print a warning if it users didn't ask for a specific architecture 101 if not options.arch: 101 found_arch = [f.arch for f in found if f.arch] 102 if found_arch and not options.arch: 102 103 print('WARNING: "%s", test has architecture specific expected files but --arch was not specified, regenerating only for current host' % testname, file=sys.stderr) 103 104 104 105 105 106 # print a warning if it users didn't ask for a specific ast version 106 if not options.ast: 107 found_astv = [f.astv for f in found if f.astv] 108 if found_astv and not options.ast: 107 109 print('WARNING: "%s", test has ast version specific expected files but --ast was not specified, regenerating only for current ast' % testname, file=sys.stderr) 108 110
Note: See TracChangeset
for help on using the changeset viewer.