Lines Matching refs:runnable
591 def _Run(self, runnable, count, no_patch=False): argument
594 def Run(self, runnable, count): argument
606 stdout = self._Run(runnable, count, no_patch=False)
608 return stdout, self._Run(runnable, count, no_patch=True)
627 def _Run(self, runnable, count, no_patch=False): argument
633 runnable.GetCommand(shell_dir, self.extra_flags),
634 timeout=runnable.timeout,
647 print ">>> Test timed out after %ss." % runnable.timeout
755 def _Run(self, runnable, count, no_patch=False): argument
762 AndroidPlatform.DEVICE_DIR, target_dir, runnable.binary)
763 cmd = [binary_on_device] + runnable.GetCommandFlags(self.extra_flags)
766 if runnable.path:
767 bench_rel = os.path.normpath(os.path.join(*runnable.path))
775 timeout=runnable.timeout,
782 print ">>> Test timed out after %ss." % runnable.timeout
882 for runnable in FlattenRunnables(root, NodeCB):
883 print ">>> Running suite: %s" % "/".join(runnable.graphs)
887 for i in xrange(0, max(1, runnable.run_count)):
890 yield platform.Run(runnable, i)
893 result, result_no_patch = runnable.Run(