diff options
author | Thomas Huth <thuth@redhat.com> | 2025-09-09 14:37:47 +0200 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2025-09-11 12:40:18 +0100 |
commit | 769acb2a1e47b97ada8e0db6ff73e303b23764d8 (patch) | |
tree | 3cf2cf63de0be184e606b232e3e68816c768abf4 | |
parent | 6a9fa5ef3230a7d51e0d953a59ee9ef10af705b8 (diff) | |
download | qemu-769acb2a1e47b97ada8e0db6ff73e303b23764d8.zip qemu-769acb2a1e47b97ada8e0db6ff73e303b23764d8.tar.gz qemu-769acb2a1e47b97ada8e0db6ff73e303b23764d8.tar.bz2 |
tests/functional/aarch64: Fix assets of test_hotplug_pci
The old bookworm URLs don't work anymore, resulting in a 404 error
now. Let's update the test to Debian Trixie to get it going again.
Signed-off-by: Thomas Huth <thuth@redhat.com>
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
-rwxr-xr-x | tests/functional/aarch64/test_hotplug_pci.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/functional/aarch64/test_hotplug_pci.py b/tests/functional/aarch64/test_hotplug_pci.py index 0c67991..bf67720 100755 --- a/tests/functional/aarch64/test_hotplug_pci.py +++ b/tests/functional/aarch64/test_hotplug_pci.py @@ -15,14 +15,14 @@ from qemu_test import BUILD_DIR class HotplugPCI(LinuxKernelTest): ASSET_KERNEL = Asset( - ('https://ftp.debian.org/debian/dists/bookworm/main/installer-arm64/' - '20230607+deb12u11/images/netboot/debian-installer/arm64/linux'), - 'd92a60392ce1e379ca198a1a820899f8f0d39a62d047c41ab79492f81541a9d9') + ('https://ftp.debian.org/debian/dists/trixie/main/installer-arm64/' + '20250803/images/netboot/debian-installer/arm64/linux'), + '93a6e4f9627d759375d28f863437a86a0659e125792a435f8e526dda006b7d5e') ASSET_INITRD = Asset( - ('https://ftp.debian.org/debian/dists/bookworm/main/installer-arm64/' - '20230607+deb12u11/images/netboot/debian-installer/arm64/initrd.gz'), - '9f817f76951f3237bca8216bee35267bfb826815687f4b2fcdd5e6c2a917790c') + ('https://ftp.debian.org/debian/dists/trixie/main/installer-arm64/' + '20250803/images/netboot/debian-installer/arm64/initrd.gz'), + 'f6c78af7078ca67638ef3a50c926cd3c1485673243f8b37952e6bd854d6ba007') def test_hotplug_pci(self): |