Skip to content

Commit

Permalink
tests/functional/test_arm_quanta_gsj: Fix broken test
Browse files Browse the repository at this point in the history
ASSET_IMAGE needs to be prefixed with "self." ... this bug
apparently went in unnoticed because the test is not run by
default.

Message-ID: <[email protected]>
Reviewed-by: Philippe Mathieu-Daudé <[email protected]>
Signed-off-by: Thomas Huth <[email protected]>
  • Loading branch information
huth committed Jan 2, 2025
1 parent ec2dfb7 commit c5efe54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/functional/test_arm_quanta_gsj.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down

0 comments on commit c5efe54

Please sign in to comment.