Changeset 4887

Show
Ignore:
Timestamp:
07/04/08 05:30:38 (6 months ago)
Author:
StevenMohr
Message:

fixed bugs

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • build/buildmaster/tg_mbuildsteps.py

    r4883 r4887  
    5555                'logfiles': {}, 
    5656                'timeout': 5*60, 
     57                'haltOnFailure':True 
    5758                } 
    5859        args.update(kwargs) 
     
    6465        self.addLog('stdout') 
    6566        cmd = LoggedRemoteCommand("VirtualEnv",self.args) 
     67        cmd.useLog('stdout') 
    6668        self.runCommand(cmd) 
    6769         
  • build/buildmaster/tg_sbuildsteps.py

    r4884 r4887  
    217217 
    218218class SlaveVirtualEnv(Command): 
    219     def __init__(self): 
     219    def __init__(self,builder,stedId,args): 
    220220        self.builder = builder 
    221221        self.stepId = stepId # just for logging 
     
    244244        args = self.args 
    245245 
    246         c = ShellCommand(self.builder, commandline, 
    247                          workdir, environ=self.env, 
     246        c = ShellCommand(self.builder, self.commandline, 
     247                         self.workdir, environ=self.env, 
    248248                         timeout=10*60, 
    249249                         sendStdout=True, 
     
    255255                         ) 
    256256        self.command = c 
     257        self.command.useLog('stdout') 
    257258        d = self.command.start() 
    258259        return d