summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorThomas Huth <thuth@redhat.com>2025-01-02 08:30:35 +0100
committerThomas Huth <thuth@redhat.com>2025-01-02 09:16:42 +0100
commitc5efe54622953c4350566ab42323de61a1c06b8f (patch)
treef5d0766039f26484903a4ea19504dd12fd60f3be
parentec2dfb7c389b94d71ee825caa20b709d5df6c166 (diff)
downloadfocaccia-qemu-c5efe54622953c4350566ab42323de61a1c06b8f.tar.gz
focaccia-qemu-c5efe54622953c4350566ab42323de61a1c06b8f.zip
tests/functional/test_arm_quanta_gsj: Fix broken test
ASSET_IMAGE needs to be prefixed with "self." ... this bug
apparently went in unnoticed because the test is not run by
default.

Message-ID: <20250102073403.36328-1-thuth@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to '')
-rwxr-xr-xtests/functional/test_arm_quanta_gsj.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/functional/test_arm_quanta_gsj.py b/tests/functional/test_arm_quanta_gsj.py
index 7aa5209bea..7b82e2185c 100755
--- a/tests/functional/test_arm_quanta_gsj.py
+++ b/tests/functional/test_arm_quanta_gsj.py
@@ -35,7 +35,7 @@ class EmcraftSf2Machine(LinuxKernelTest):
     @skipUnless(os.getenv('QEMU_TEST_TIMEOUT_EXPECTED'), 'Test might timeout')
     def test_arm_quanta_gsj(self):
         self.set_machine('quanta-gsj')
-        image_path = self.uncompress(ASSET_IMAGE, 'obmc.mtd', format='gz')
+        image_path = self.uncompress(self.ASSET_IMAGE, format='gz')
 
         self.vm.set_console()
         drive_args = 'file=' + image_path + ',if=mtd,bus=0,unit=0'