[PATCH] tests/functional/aarch64: Fix assets of test_hotplug_pci

Thomas Huth posted 1 patch 2 weeks, 5 days ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20250909123747.567480-1-thuth@redhat.com
Maintainers: Gustavo Romero <gustavo.romero@linaro.org>
tests/functional/aarch64/test_hotplug_pci.py | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
[PATCH] tests/functional/aarch64: Fix assets of test_hotplug_pci
Posted by Thomas Huth 2 weeks, 5 days ago
From: Thomas Huth <thuth@redhat.com>

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>
---
 tests/functional/aarch64/test_hotplug_pci.py | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/tests/functional/aarch64/test_hotplug_pci.py b/tests/functional/aarch64/test_hotplug_pci.py
index 0c67991b89e..bf677204319 100755
--- a/tests/functional/aarch64/test_hotplug_pci.py
+++ b/tests/functional/aarch64/test_hotplug_pci.py
@@ -15,14 +15,14 @@
 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):
 
-- 
2.51.0
Re: [PATCH] tests/functional/aarch64: Fix assets of test_hotplug_pci
Posted by Peter Maydell 2 weeks, 3 days ago
On Tue, 9 Sept 2025 at 13:38, Thomas Huth <thuth@redhat.com> wrote:
>
> From: Thomas Huth <thuth@redhat.com>
>
> 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>
> ---
>  tests/functional/aarch64/test_hotplug_pci.py | 12 ++++++------
>  1 file changed, 6 insertions(+), 6 deletions(-)

Applied to master to avoid the CI failures; thanks.

-- PMM