aboutsummaryrefslogtreecommitdiff
path: root/tests/functional/qemu_test/cmd.py
diff options
context:
space:
mode:
authorDaniel P. Berrangé <berrange@redhat.com>2024-12-17 15:59:33 +0000
committerThomas Huth <thuth@redhat.com>2024-12-17 19:39:53 +0100
commit8b5a0dd3a8a4526bb91430b7f548c95d46093dc1 (patch)
tree1d713a09b62c988ced5b443276a495ec20bdde21 /tests/functional/qemu_test/cmd.py
parentbcc12768c242a4862a1725e22371dd87af1c2b7e (diff)
downloadqemu-8b5a0dd3a8a4526bb91430b7f548c95d46093dc1.zip
qemu-8b5a0dd3a8a4526bb91430b7f548c95d46093dc1.tar.gz
qemu-8b5a0dd3a8a4526bb91430b7f548c95d46093dc1.tar.bz2
tests/functional: switch over to using self.build_file(...)
This removes direct access of the 'BUILD_DIR' variable. Reviewed-by: Thomas Huth <thuth@redhat.com> Signed-off-by: Daniel P. Berrangé <berrange@redhat.com> Message-ID: <20241217155953.3950506-13-berrange@redhat.com> Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'tests/functional/qemu_test/cmd.py')
-rw-r--r--tests/functional/qemu_test/cmd.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/functional/qemu_test/cmd.py b/tests/functional/qemu_test/cmd.py
index bebcd46..c8971de 100644
--- a/tests/functional/qemu_test/cmd.py
+++ b/tests/functional/qemu_test/cmd.py
@@ -16,7 +16,6 @@ import os
import os.path
import subprocess
-from .config import BUILD_DIR
def which(tool):
""" looks up the full path for @tool, returns None if not found
@@ -205,10 +204,10 @@ def get_qemu_img(test):
# If qemu-img has been built, use it, otherwise the system wide one
# will be used.
- qemu_img = os.path.join(BUILD_DIR, 'qemu-img')
+ qemu_img = test.build_file('qemu-img')
if os.path.exists(qemu_img):
return qemu_img
qemu_img = which('qemu-img')
if qemu_img is not None:
return qemu_img
- test.skipTest(f"qemu-img not found in {BUILD_DIR} or '$PATH'")
+ test.skipTest(f"qemu-img not found in build dir or '$PATH'")