Home
last modified time | relevance | path

Searched refs:output_path (Results 1 – 2 of 2) sorted by relevance

/qemu/tests/functional/qemu_test/
H A Duncompress.py21 def gzip_uncompress(gz_path, output_path): argument
22 if os.path.exists(output_path):
26 with open(output_path, 'wb') as raw_out:
29 os.remove(output_path)
32 def lzma_uncompress(xz_path, output_path): argument
33 if os.path.exists(output_path):
37 with open(output_path, 'wb') as raw_out:
40 os.remove(output_path)
44 def zstd_uncompress(zstd_path, output_path): argument
45 if os.path.exists(output_path):
[all …]
H A Darchive.py29 def cpio_extract(archive, output_path): argument
31 os.chdir(output_path)