diff options
author | Nicholas Piggin <npiggin@gmail.com> | 2024-12-20 12:46:17 +1000 |
---|---|---|
committer | Thomas Huth <thuth@redhat.com> | 2025-01-02 08:58:08 +0100 |
commit | 9f6b6106dc450c4027d48b4c6347b75ec4c9eb96 (patch) | |
tree | 8d254d5fb3d38e5d604bae73be58b022c8f95472 | |
parent | e6c81cf3d00a769d105290699b4efc3aeff0c66d (diff) | |
download | qemu-9f6b6106dc450c4027d48b4c6347b75ec4c9eb96.zip qemu-9f6b6106dc450c4027d48b4c6347b75ec4c9eb96.tar.gz qemu-9f6b6106dc450c4027d48b4c6347b75ec4c9eb96.tar.bz2 |
tests/functional/test_ppc64_hv: Update to Alpine 3.21.0
Signed-off-by: Nicholas Piggin <npiggin@gmail.com>
Message-ID: <20241220024617.1968556-5-npiggin@gmail.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
-rwxr-xr-x | tests/functional/test_ppc64_hv.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/functional/test_ppc64_hv.py b/tests/functional/test_ppc64_hv.py index e0dffb1..62f996a 100755 --- a/tests/functional/test_ppc64_hv.py +++ b/tests/functional/test_ppc64_hv.py @@ -35,9 +35,9 @@ class HypervisorTest(QemuSystemTest): good_message = 'VFS: Cannot open root device' ASSET_ISO = Asset( - ('https://dl-cdn.alpinelinux.org/alpine/v3.18/' - 'releases/ppc64le/alpine-standard-3.18.4-ppc64le.iso'), - 'c26b8d3e17c2f3f0fed02b4b1296589c2390e6d5548610099af75300edd7b3ff') + ('https://dl-cdn.alpinelinux.org/alpine/v3.21/' + 'releases/ppc64le/alpine-standard-3.21.0-ppc64le.iso'), + '7651ab4e3027604535c0b36e86c901b4695bf8fe97b908f5b48590f6baae8f30') def extract_from_iso(self, iso, path): """ @@ -114,7 +114,7 @@ class HypervisorTest(QemuSystemTest): '-initrd /media/nvme0n1/boot/initramfs-lts ' '-kernel /media/nvme0n1/boot/vmlinuz-lts ' '-append \'usbcore.nousb ' + append + '\'') - # Alpine 3.18 kernel seems to crash in XHCI USB driver. + # Alpine 3.21 kernel seems to crash in XHCI USB driver. ps1='localhost:~#' wait_for_console_pattern(self, 'localhost login:') exec_command_and_wait_for_pattern(self, 'root', ps1) |