Lines Matching refs:runnable
631 def _Run(self, runnable, count, secondary=False): argument
634 def Run(self, runnable, count): argument
645 stdout = self._Run(runnable, count, secondary=False)
647 return stdout, self._Run(runnable, count, secondary=True)
684 def _Run(self, runnable, count, secondary=False): argument
688 cmd = runnable.GetCommand(self.command_prefix, shell_dir, self.extra_flags)
700 logging.warning(">>> Test timed out after %ss.", runnable.timeout)
711 if runnable.process_size:
750 def _Run(self, runnable, count, secondary=False): argument
757 if runnable.path:
758 bench_rel = os.path.normpath(os.path.join(*runnable.path))
764 runnable_name = '-'.join(runnable.graphs)
773 binary=runnable.binary,
774 args=runnable.GetCommandFlags(self.extra_flags),
776 timeout=runnable.timeout,
784 logging.warning(">>> Test timed out after %ss.", runnable.timeout)
786 if runnable.process_size:
1055 for runnable in FlattenRunnables(root, NodeCB):
1056 runnable_name = "/".join(runnable.graphs)
1064 total_runs = runnable.run_count * options.run_count_multiplier
1068 yield platform.Run(runnable, i)
1071 result, result_secondary = runnable.Run(