Changeset d83b266 for benchmark/rmit.py
- Timestamp:
- Jul 26, 2021, 2:42:34 PM (4 years ago)
- Branches:
- ADT, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- 0a061c0
- Parents:
- c86ee4c (diff), 98233b3 (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. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
benchmark/rmit.py
rc86ee4c rd83b266 138 138 # ================================================================================ 139 139 # Identify the commands to run 140 commands = ["./" + options.command[0] + "-" + c for c in options.candidates] 140 command = './' + options.command[0] 141 if options.candidates: 142 commands = [command + "-" + c for c in options.candidates] 143 else: 144 commands = [command] 141 145 for c in commands: 142 146 if not os.path.isfile(c):
Note:
See TracChangeset
for help on using the changeset viewer.