Changeset 325 for CCCC/trunk/ceda_cc/c4.py
- Timestamp:
- 18/05/15 16:33:53 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
CCCC/trunk/ceda_cc/c4.py
r321 r325 252 252 class main(object): 253 253 254 def __init__(self,args=None,abortMessageCount=-1,printInfo=False,monitorFileHandles = False ):254 def __init__(self,args=None,abortMessageCount=-1,printInfo=False,monitorFileHandles = False,cmdl=None): 255 255 logDict = {} 256 256 ecount = 0 … … 258 258 c4i.logger.info( 'Starting batch -- number of file: %s' % (len(c4i.flist)) ) 259 259 c4i.logger.info( 'Source: %s' % c4i.source ) 260 if cmdl != None: 261 c4i.logger.info( 'Command: %s' % cmdl ) 260 262 261 263 isDummy = c4i.project[:2] == '__' … … 433 435 print "Tests completed" 434 436 else: 435 main(printInfo=True) 437 cmdl = string.join( sys.argv ) 438 main(printInfo=True, cmdl=cmdl) 436 439 437 440 if __name__ == '__main__':
Note: See TracChangeset
for help on using the changeset viewer.