[PATCH] tests/functional/test_arm_quanta_gsj: Fix broken test

Thomas Huth posted 1 patch 3 months ago
tests/functional/test_arm_quanta_gsj.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[PATCH] tests/functional/test_arm_quanta_gsj: Fix broken test
Posted by Thomas Huth 3 months ago
ASSET_IMAGE needs to be prefixed with "self." ... this bug
apparently went in unnoticed because the test is not run by
default.

Signed-off-by: Thomas Huth <thuth@redhat.com>
---
 tests/functional/test_arm_quanta_gsj.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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'
-- 
2.47.1
Re: [PATCH] tests/functional/test_arm_quanta_gsj: Fix broken test
Posted by Philippe Mathieu-Daudé 3 months ago
On 2/1/25 08:34, Thomas Huth wrote:
> ASSET_IMAGE needs to be prefixed with "self." ... this bug
> apparently went in unnoticed because the test is not run by
> default.
> 
> Signed-off-by: Thomas Huth <thuth@redhat.com>
> ---
>   tests/functional/test_arm_quanta_gsj.py | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)

Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>