Lines Matching refs:build_dir
31 def RunSingleTestCaseParallel(this, run_label, build_dir, test_case): argument
32 result = this.RunSingleTestCase(run_label, build_dir, test_case)
46 self.safe_script_dir = self.args.build_dir
66 self.after_build_dir = self.args.build_dir
306 build_dir = self._CreateTempRepo('repo_%s' % run_label, relative_build_dir,
309 self._BuildCurrentBranch(build_dir)
310 return self._MeasureCurrentBranch(run_label, build_dir)
351 build_dir = os.path.join(src_dir, relative_build_dir)
352 os.makedirs(build_dir)
356 dest_gn_args = os.path.join(build_dir, 'args.gn')
364 return build_dir
378 def _BuildCurrentBranch(self, build_dir): argument
390 cmd = ['ninja', '-C', build_dir, 'pdfium_test']
391 if GetBooleanGnArg('use_goma', build_dir):
396 def _MeasureCurrentBranch(self, run_label, build_dir): argument
399 results = self._RunAsync(run_label, build_dir)
401 results = self._RunSync(run_label, build_dir)
406 def _RunSync(self, run_label, build_dir): argument
421 result = self.RunSingleTestCase(run_label, build_dir, test_case)
427 def _RunAsync(self, run_label, build_dir): argument
444 build_dir)
466 def RunSingleTestCase(self, run_label, build_dir, test_case): argument
480 '--build-dir=%s' % build_dir