Changeset 37c6f77 for benchmark/rmit.py


Ignore:
Timestamp:
Jul 13, 2021, 9:30:55 AM (2 years ago)
Author:
caparsons <caparson@…>
Branches:
ADT, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast-unique-expr, pthread-emulation, qualifiedEnum
Children:
12a1013, 801978b
Parents:
9345684 (diff), 6f27b67 (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.
Message:

Merge branch 'master' of plg.uwaterloo.ca:software/cfa/cfa-cc

File:
1 edited

Legend:

Unmodified
Added
Removed
  • benchmark/rmit.py

    r9345684 r37c6f77  
    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.