Lines Matching refs:output
116 self.help.output(sections = sections)
124 self.actions.output(self.log)
167 output = ''
185 output += out
189 return (output, error, ret)
192 def defaultCheckCommand(command, status, output, error): argument
198 if len(output) > 2*mlen:
199 output = output[0:mlen]+'\n .... more output .....\n'+output[len(output)- mlen:]
202 raise RuntimeError('Could not execute "%s":\n%s' % (command,output+error))
205 def passCheckCommand(command, status, output, error): argument
223 def logOutput(log, output, logOutputflg): argument
225 if not logOutputflg: return output
227 output = re.sub('\n+','\n', output).strip()
228 if output:
230 output = '\n'.join(output.split('\n')[:lineLimit])
231 if '\n' in output: # multi-line output
232 log.write('stdout:\n'+output+'\n')
234 log.write('stdout: '+output+'\n')
235 return output
246 …(self.output, self.error, self.status) = ('', '', -1) # So these fields exist even if command fail…
247 … (self.output, self.error, self.status) = Script.runShellCommandSeq(commandseq, log, cwd, env)
256 return (thread.output, thread.error, thread.status)
260 (output, error, status) = runInShell(commandseq, log, cwd, env)
261 output = logOutput(log, output,logOutputflg)
263 checkCommand(commandseq, status, output, error)
264 return (output, error, status)