Lines Matching refs:out_path

47     def test_clobber_output(self, out_path, flag_section, clobber, expect_straggler):  argument
50 args = ['-i', '--outdir', out_path, '-T', path, '-y'] + \
57 os.mkdir(os.path.join(out_path))
60 straggler_path = os.path.join(out_path, straggler_name)
72 current_dirs = os.listdir(os.path.normpath(os.path.join(out_path, '..')))
76 out_contents = os.listdir(os.path.join(out_path))
83 def test_runtime_artifact_cleanup(self, out_path): argument
86 args = ['-i', '--outdir', out_path, '-T', path] + \
100 sample_path = os.path.join(out_path, 'qemu_x86_atom', relpath, 'sample.basic.helloworld')
113 def test_short_build_path(self, out_path): argument
117 args = ['-i', '--outdir', out_path, '-T', path] + \
125 test_result_path = os.path.join(out_path, 'qemu_x86_atom',
134 with open(os.path.join(out_path, 'twister.log')) as f:
180 def test_prep_artifacts_for_testing(self, out_path): argument
184 zephyr_out_path = os.path.join(out_path, 'qemu_x86_atom', relative_test_path,
186 args = ['-i', '--outdir', out_path, '-T', path] + \
205 def test_package_artifacts(self, out_path): argument
209 package_path = os.path.join(out_path, package_name)
210 args = ['-i', '--outdir', out_path, '-T', path] + \
227 for clean_up in os.listdir(os.path.join(out_path)):
229 clean_up_path = os.path.join(out_path, clean_up)
233 shutil.rmtree(os.path.join(out_path, clean_up))
237 tar.extractall(path=out_path)
241 file_names = os.listdir(os.path.join(out_path, os.path.basename(out_path)))
243 shutil.move(os.path.join(out_path, os.path.basename(out_path), file_name), out_path)
245 args = ['-i', '--outdir', out_path, '-T', path] + \