Skip to content

Commit ec2dfb7

Browse files
philmdhuth
authored andcommitted
tests/functional/test_rx_gdbsim: Use stable URL for test_linux_sash
Yoshinori said [*] URL references on OSDN were stable, but they appear not to be. Mirror the artifacts on GitHub to avoid failures while testing on CI. [*] https://www.mail-archive.com/[email protected]/msg686487.html Cc: Yoshinori Sato <[email protected]> Reported-by: Alex Bennée <[email protected]> Signed-off-by: Philippe Mathieu-Daudé <[email protected]> Message-ID: <[email protected]> [huth: Adapt the patch to the new version in the functional framework] Message-ID: <[email protected]> Signed-off-by: Thomas Huth <[email protected]>
1 parent 9f6b610 commit ec2dfb7

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

tests/functional/test_rx_gdbsim.py

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,16 @@ class RxGdbSimMachine(QemuSystemTest):
2121
KERNEL_COMMON_COMMAND_LINE = 'printk.time=0 '
2222

2323
ASSET_UBOOT = Asset(
24-
'https://acc.dl.osdn.jp/users/23/23888/u-boot.bin.gz',
25-
'7146567d669e91dbac166384b29aeba1715beb844c8551e904b86831bfd9d046')
24+
('https://github.com/philmd/qemu-testing-blob/raw/rx-gdbsim/rx/gdbsim/'
25+
'u-boot.bin'),
26+
'dd7dd4220cccf7aeb32227b26233bf39600db05c3f8e26005bcc2bf6c927207d')
2627
ASSET_DTB = Asset(
27-
'https://acc.dl.osdn.jp/users/23/23887/rx-virt.dtb',
28+
('https://github.com/philmd/qemu-testing-blob/raw/rx-gdbsim/rx/gdbsim/'
29+
'rx-gdbsim.dtb'),
2830
'aa278d9c1907a4501741d7ee57e7f65c02dd1b3e0323b33c6d4247f1b32cf29a')
2931
ASSET_KERNEL = Asset(
30-
'http://acc.dl.osdn.jp/users/23/23845/zImage',
32+
('https://github.com/philmd/qemu-testing-blob/raw/rx-gdbsim/rx/gdbsim/'
33+
'zImage'),
3134
'baa43205e74a7220ed8482188c5e9ce497226712abb7f4e7e4f825ce19ff9656')
3235

3336
def test_uboot(self):
@@ -36,7 +39,7 @@ def test_uboot(self):
3639
"""
3740
self.set_machine('gdbsim-r5f562n8')
3841

39-
uboot_path = self.uncompress(self.ASSET_UBOOT)
42+
uboot_path = self.ASSET_UBOOT.fetch()
4043

4144
self.vm.set_console()
4245
self.vm.add_args('-bios', uboot_path,

0 commit comments

Comments
 (0)