ajack       2004/04/10 16:09:29

  Modified:    python/gump engine.py
  Log:
  Tinkering towards:

  

        http://issues.apache.org/jira/browse/GUMP-49
  
  Revision  Changes    Path
  1.99      +10 -1     gump/python/gump/engine.py
  
  Index: engine.py
  ===================================================================
  RCS file: /home/cvs/gump/python/gump/engine.py,v
  retrieving revision 1.98
  retrieving revision 1.99
  diff -u -r1.98 -r1.99
  --- engine.py 8 Apr 2004 15:00:57 -0000       1.98
  +++ engine.py 10 Apr 2004 23:09:29 -0000      1.99
  @@ -736,6 +736,12 @@
                       dirs.append(dir)          
                       
                             
  +    def setEndTime(self,run):
  +        
  +        logResourceUtilization('Set End Time')
  +        # :TODO: Move this to run
  +        run.getWorkspace().setEndTime()
  +        
       """
       
           ******************************************************************
  @@ -1026,9 +1032,12 @@
           elif 'gatherResults'==name:
               # Gather results.xml from other servers 
               task=GumpTask(name,['preprocess'])   
  +        elif 'setEndTime'==name:
  +            # Gather results.xml from other servers 
  +            task=GumpTask(name,['preprocess'])   
           elif 'generateResults'==name:
               # Generate the results.xml for this server/workspace
  -            
task=GumpTask(name,['preprocess','loadStatistics','prepareDocumentation'])   
  +            
task=GumpTask(name,['preprocess','loadStatistics','setEndTime','prepareDocumentation'])
   
           else:
               raise RuntimeError, 'Unknown task name ['+name+']'            
           return task
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to