Lines Matching refs:run_command
58 def run_command(executable: str, args: List[Any]=[], cwd: str=None, env: Dict[str, str]=None) -> Tu… function
104 _, stderr = run_command('cmake', args=['.'], cwd=tmpdir, env=modified_env)
162 run_command(compiler_executable_name,
173 stdout, _ = run_command(self.tmpdir + '/main', args = [int(5000000 * loop_factor)])
198 run_command(compiler_executable_name,
257 run_command('make', args=make_args, cwd=self.tmpdir)
279 run_command('strip', args=[self.tmpdir + '/main'])
283 run_command('strip', args=[self.tmpdir + '/main'])
286 run_command('make',
296 run_command('touch', args=self.arbitrary_files, cwd=self.tmpdir)
304 run_command('make', args=make_args + ['clean'], cwd=self.tmpdir)
305 run_command('make', args=make_args + ['main_ram.txt'], cwd=self.tmpdir)
317 results, _ = run_command(self.tmpdir + '/main',
328 run_command(self.tmpdir + '/main', args = [])
334 wc_result, _ = run_command('wc', args=['-c', self.tmpdir + '/main'])
750 run_command('rm', args=['-f', args.output_file])
777 run_command('cmake',
785 run_command('make', args=make_args, cwd=fruit_build_dir)