Lines Matching refs:secondary
626 def _Run(self, runnable, count, secondary=False):
629 def _LoggedRun(self, runnable, count, secondary=False):
630 suffix = ' - secondary' if secondary else ''
633 output = self._Run(runnable, count, secondary)
647 def Run(self, runnable, count, secondary):
653 secondary: True if secondary run should be executed.
657 secondary is False.
659 output = self._LoggedRun(runnable, count, secondary=False)
660 if secondary:
661 return output, self._LoggedRun(runnable, count, secondary=True)
698 def _Run(self, runnable, count, secondary=False):
699 shell_dir = self.shell_dir_secondary if secondary else self.shell_dir
753 def _Run(self, runnable, count, secondary=False):
754 target_dir = 'bin_secondary' if secondary else 'bin'
768 runnable_name, count + 1, '-secondary' if secondary else ''))
921 parser.add_argument('--json-test-results-secondary',
926 parser.add_argument('--outdir-secondary',
932 'Not supported in conjunction with outdir-secondary.')
1001 logging.error('For writing secondary json test results, a secondary outdir '
1016 logging.error('specify either binary-override-path or outdir-secondary')
1102 runnable, i, secondary=args.shell_dir_secondary)