Lines Matching refs:build_dir
29 def RunSingleTestCaseParallel(this, run_label, build_dir, test_case): argument
30 result = this.RunSingleTestCase(run_label, build_dir, test_case)
44 self.safe_script_dir = self.args.build_dir
65 self.after_build_dir = self.args.build_dir
304 build_dir = self._CreateTempRepo('repo_%s' % run_label,
308 self._BuildCurrentBranch(build_dir)
309 return self._MeasureCurrentBranch(run_label, build_dir)
347 build_dir = os.path.join(src_dir, relative_build_dir)
348 os.makedirs(build_dir)
352 dest_gn_args = os.path.join(build_dir, 'args.gn')
360 return build_dir
375 def _BuildCurrentBranch(self, build_dir): argument
386 cmd = ['ninja', '-C', build_dir, 'pdfium_test']
387 if GetBooleanGnArg('use_goma', build_dir):
392 def _MeasureCurrentBranch(self, run_label, build_dir): argument
395 results = self._RunAsync(run_label, build_dir)
397 results = self._RunSync(run_label, build_dir)
402 def _RunSync(self, run_label, build_dir): argument
417 result = self.RunSingleTestCase(run_label, build_dir, test_case)
423 def _RunAsync(self, run_label, build_dir): argument
440 RunSingleTestCaseParallel, self, run_label, build_dir)
462 def RunSingleTestCase(self, run_label, build_dir, test_case): argument
475 '--build-dir=%s' % build_dir]