Changeset 6f27b67 for benchmark/rmit.py


Ignore:
Timestamp:
Jul 12, 2021, 4:31:29 PM (23 months ago)
Author:
Andrew Beach <ajbeach@…>
Branches:
ADT, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast-unique-expr, pthread-emulation, qualifiedEnum
Children:
37c6f77
Parents:
605673f
Message:

Could not get rmit.py working with the exception benchmark, but I got one improvement along the way.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • benchmark/rmit.py

    r605673f r6f27b67  
    138138        # ================================================================================
    139139        # 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]
    141145        for c in commands:
    142146                if not os.path.isfile(c):
Note: See TracChangeset for help on using the changeset viewer.