aboutsummaryrefslogtreecommitdiff
path: root/tests/vm/openbsd
diff options
context:
space:
mode:
authorCleber Rosa <crosa@redhat.com>2019-06-13 09:07:15 -0400
committerAlex Bennée <alex.bennee@linaro.org>2019-07-04 19:22:58 +0100
commit676d1f3e2f4667ead88cb719db0581f396fc60bf (patch)
tree26420b6678d87f2cfe3466e120cc28791b54a117 /tests/vm/openbsd
parent57dfc2c4d51e770ed3f617e5d1456d1e2bacf3f0 (diff)
downloadqemu-676d1f3e2f4667ead88cb719db0581f396fc60bf.zip
qemu-676d1f3e2f4667ead88cb719db0581f396fc60bf.tar.gz
qemu-676d1f3e2f4667ead88cb719db0581f396fc60bf.tar.bz2
tests/vm: avoid extra compressed image copy
The image copy is only really needed because xz doesn't know to properly decompress a file not named properly. Instead of decompressing to stdout, and having to rely on a shell, let's just create a link instead of copying the file. Signed-off-by: Cleber Rosa <crosa@redhat.com> Tested-by: Philippe Mathieu-Daudé <philmd@redhat.com> Message-Id: <20190613130718.3763-2-crosa@redhat.com> Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Diffstat (limited to 'tests/vm/openbsd')
-rwxr-xr-xtests/vm/openbsd4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/vm/openbsd b/tests/vm/openbsd
index 2105c01..87ec982 100755
--- a/tests/vm/openbsd
+++ b/tests/vm/openbsd
@@ -36,8 +36,8 @@ class OpenBSDVM(basevm.BaseVM):
img_tmp_xz = img + ".tmp.xz"
img_tmp = img + ".tmp"
sys.stderr.write("Extracting the image...\n")
- subprocess.check_call(["cp", "-f", cimg, img_tmp_xz])
- subprocess.check_call(["xz", "-dvf", img_tmp_xz])
+ subprocess.check_call(["ln", "-f", cimg, img_tmp_xz])
+ subprocess.check_call(["xz", "--keep", "-dvf", img_tmp_xz])
if os.path.exists(img):
os.remove(img)
os.rename(img_tmp, img)