Changes in tools/jobfile.py [8786aa5:a5a8ca7] in mainline


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • tools/jobfile.py

    r8786aa5 ra5a8ca7  
    2828#
    2929"""
    30 Add a source/object file pair to a checker jobfile
     30Add a source/object file pair to a Stanse jobfile
    3131"""
    3232
     
    3737def usage(prname):
    3838        "Print usage syntax"
    39         print prname + " <JOBFILE> <SOURCE> <TARGET> <TOOL> <CATEGORY> [OPTIONS ...]"
     39        print prname + " <JOBFILE> <SOURCE> <OBJECT> [OPTIONS ...]"
    4040
    4141def main():
    42         if (len(sys.argv) < 6):
     42        if (len(sys.argv) < 4):
    4343                usage(sys.argv[0])
    4444                return
     
    4646        jobfname = sys.argv[1]
    4747        srcfname = sys.argv[2]
    48         tgtfname = sys.argv[3]
    49         toolname = sys.argv[4]
    50         category = sys.argv[5]
     48        objfname = sys.argv[3]
    5149        cwd = os.getcwd()
    52         options = " ".join(sys.argv[6:])
     50        options = " ".join(sys.argv[4:])
    5351       
    5452        jobfile = file(jobfname, "a")
    5553        fcntl.lockf(jobfile, fcntl.LOCK_EX)
    56         jobfile.write("{%s},{%s},{%s},{%s},{%s},{%s}\n" % (srcfname, tgtfname, toolname, category, cwd, options))
     54        jobfile.write("{%s},{%s},{%s},{%s}\n" % (srcfname, objfname, cwd, options))
    5755        fcntl.lockf(jobfile, fcntl.LOCK_UN)
    5856        jobfile.close()
Note: See TracChangeset for help on using the changeset viewer.