Lines Matching refs:tool

44         # The variations run for this tool, mapped by --target_board name.
155 + ''' [-t tool] [-l variant-list] [-L] log-or-sum-file ...
157 tool The tool (e.g. g++, libffi) for which to create a
162 variants in the files for <tool>.
212 # Return the ToolRun for tool NAME.
239 def parse_run (self, filename, file, tool, variation, num_variations):
258 end = '\t\t=== ' + tool.name + ' Summary ===\n'
260 end = ('\t\t=== ' + tool.name + ' Summary for '
375 tool = self.get_tool ('acats')
376 variation = tool.get_variation ('none')
377 self.parse_run (filename, file, tool, variation, 1)
406 tool = None
420 # Parse a testsuite run for one tool/variation combination.
423 if not tool:
424 self.fatal (filename, 'could not parse tool name')
427 self.parse_run (filename, file, tool,
428 tool.get_variation (name),
465 # Parse the tool name.
468 tool = self.get_tool (match.group (1))
473 if tool and line == '\t\t=== ' + tool.name + ' Summary ===\n':
502 def output_summary (self, tool, counts):
508 or (tool.name == 'acats'
514 def output_variation (self, tool, variation):
531 sys.stdout.write ('\t\t=== ' + tool.name + ' Summary for '
533 self.output_summary (tool, variation.counts)
535 # Output unified .log or .sum information for a particular tool,
537 def output_tool (self, tool):
539 if tool.name == 'acats':
542 sys.stdout.write ('\t\t=== ' + tool.name + ' tests ===\n')
543 for variation in tool.variations.values():
544 self.output_variation (tool, variation)
546 sys.stdout.write ('\t\t=== ' + tool.name + ' Summary ===\n')
549 sys.stdout.write ('\n\t\t=== ' + tool.name + ' tests ===\n\n'
552 if name in tool.variations:
556 if name in tool.variations:
557 variation = tool.variations[name]
560 self.output_variation (tool, variation)
562 sys.stdout.write ('\n\t\t=== ' + tool.name + ' Summary ===\n\n')
563 self.output_summary (tool, counts)