aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorVladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>2021-01-16 16:44:15 +0300
committerEric Blake <eblake@redhat.com>2021-01-20 14:53:22 -0600
commitfb07b5c7f2f35140a26738fd0ca79888039afd3c (patch)
tree9d1f8607902ac9254a7743ebc01fa211ffcc3e29 /tests
parentec77662e60fa12802fd5c1bdc0e4d147a8b78e95 (diff)
downloadqemu-fb07b5c7f2f35140a26738fd0ca79888039afd3c.zip
qemu-fb07b5c7f2f35140a26738fd0ca79888039afd3c.tar.gz
qemu-fb07b5c7f2f35140a26738fd0ca79888039afd3c.tar.bz2
iotests/303: use dot slash for qcow2.py running
If you run './check 303', check includes common.config which adjusts $PATH to include '.' first, and therefore finds qcow2.py on PATH. But if you run './303' directly, there is nothing to adjust PATH, and if '.' is not already on your PATH by other means, the test fails because the executable is not found. Adjust how we invoke the helper executable to avoid needing a PATH search in the first place. Signed-off-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com> Reviewed-by: Eric Blake <eblake@redhat.com> Message-Id: <20210116134424.82867-3-vsementsov@virtuozzo.com> Signed-off-by: Eric Blake <eblake@redhat.com>
Diffstat (limited to 'tests')
-rwxr-xr-xtests/qemu-iotests/3032
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/qemu-iotests/303 b/tests/qemu-iotests/303
index 6c21774..11cd9ee 100755
--- a/tests/qemu-iotests/303
+++ b/tests/qemu-iotests/303
@@ -56,7 +56,7 @@ qemu_img_create('-f', iotests.imgfmt, disk, '10M')
add_bitmap(1, 0, 6, False)
add_bitmap(2, 6, 8, True)
-dump = ['qcow2.py', disk, 'dump-header']
+dump = ['./qcow2.py', disk, 'dump-header']
subprocess.run(dump)
# Dump the metadata in JSON format
dump.append('-j')