Ignore:
Timestamp:
Sep 8, 2006, 11:39:11 AM (18 years ago)
Author:
garonne
Message:

correction du bug os.chdir de python

File:
1 edited

Legend:

Unmodified
Added
Removed
  • tbroadcast/v2/scripts/tbroadcast

    r244 r245  
    4040    ignore_cycles = False
    4141    silent        = False
     42    perf          = False     
    4243    output        = None
    4344    error         = None
     
    5051             if option == '-f':
    5152                file = string.split(arg,'=')[1]
     53             if option == '-perf':
     54                perf = True
    5255             if option == '-output':
    5356                output = string.split(arg,'=')[1]
     
    5962                 ignore_cycles = True
    6063             if option == '-silent':             
    61                  silent = True
    62                  
     64                 silent = True                 
    6365             if option == '-help':   
    6466                  usage()
     
    7476              command = arg
    7577
    76     master = Scheduler (num_workers=num_worker, file=file, ignore_cycles=ignore_cycles, local=local, output=output, error=error, silent=silent)
     78    master = Scheduler (num_workers=num_worker, file=file, ignore_cycles=ignore_cycles, local=local, output=output, error=error, silent=silent, perf=perf)
    7779    if test:
    7880        master.simulate_execution()
Note: See TracChangeset for help on using the changeset viewer.