Skip to content

Commit a35c209

Browse files
committed
tests/avocado/machine_m68k_nextcube: Fix the download URL for the ROM image
If Avocado has to fetch this asset, the download fails with a 403 HTTP error. Use a different URL to fix the issue. Message-ID: <20231101201934.27637-1-huth@tuxfamily.org> Signed-off-by: Thomas Huth <huth@tuxfamily.org>
1 parent f2a80c6 commit a35c209

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/avocado/machine_m68k_nextcube.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ class NextCubeMachine(QemuSystemTest):
3030
timeout = 15
3131

3232
def check_bootrom_framebuffer(self, screenshot_path):
33-
rom_url = ('http://www.nextcomputers.org/NeXTfiles/Software/ROM_Files/'
34-
'68040_Non-Turbo_Chipset/Rev_2.5_v66.BIN')
33+
rom_url = ('https://sourceforge.net/p/previous/code/1350/tree/'
34+
'trunk/src/Rev_2.5_v66.BIN?format=raw')
3535
rom_hash = 'b3534796abae238a0111299fc406a9349f7fee24'
3636
rom_path = self.fetch_asset(rom_url, asset_hash=rom_hash)
3737

0 commit comments

Comments
 (0)