aboutsummaryrefslogtreecommitdiff
path: root/tests/avocado/replay_kernel.py
diff options
context:
space:
mode:
authorThomas Huth <thuth@redhat.com>2025-02-18 16:27:42 +0100
committerThomas Huth <thuth@redhat.com>2025-02-26 07:43:25 +0100
commit4d75a3743a04a4a3db7f339eee159068fa8757b6 (patch)
treea961237224ef65c61b61b20d6a2f5cc50bc579fd /tests/avocado/replay_kernel.py
parent504248520316ac72f11855e14766e6658ec486d4 (diff)
downloadqemu-4d75a3743a04a4a3db7f339eee159068fa8757b6.zip
qemu-4d75a3743a04a4a3db7f339eee159068fa8757b6.tar.gz
qemu-4d75a3743a04a4a3db7f339eee159068fa8757b6.tar.bz2
tests/functional: Convert the aarch64 replay avocado tests
Put the tests into a separate file now (in the functional framework, each file is run with one specific qemu-system-* binary). Signed-off-by: Thomas Huth <thuth@redhat.com> Message-ID: <20250218152744.228335-13-thuth@redhat.com>
Diffstat (limited to 'tests/avocado/replay_kernel.py')
-rw-r--r--tests/avocado/replay_kernel.py18
1 files changed, 0 insertions, 18 deletions
diff --git a/tests/avocado/replay_kernel.py b/tests/avocado/replay_kernel.py
index 4954360..dffced6 100644
--- a/tests/avocado/replay_kernel.py
+++ b/tests/avocado/replay_kernel.py
@@ -143,21 +143,3 @@ class ReplayKernelNormal(ReplayKernelBase):
console_pattern = 'VFS: Cannot open root device'
self.run_rr(kernel_path, kernel_command_line, console_pattern, shift=5)
-
- def test_aarch64_virt(self):
- """
- :avocado: tags=arch:aarch64
- :avocado: tags=machine:virt
- :avocado: tags=cpu:cortex-a53
- """
- kernel_url = ('https://archives.fedoraproject.org/pub/archive/fedora'
- '/linux/releases/29/Everything/aarch64/os/images/pxeboot'
- '/vmlinuz')
- kernel_hash = '8c73e469fc6ea06a58dc83a628fc695b693b8493'
- kernel_path = self.fetch_asset(kernel_url, asset_hash=kernel_hash)
-
- kernel_command_line = (self.KERNEL_COMMON_COMMAND_LINE +
- 'console=ttyAMA0')
- console_pattern = 'VFS: Cannot open root device'
-
- self.run_rr(kernel_path, kernel_command_line, console_pattern)