diff options
| author | Thomas Huth <thuth@redhat.com> | 2024-12-05 17:28:07 +0100 |
|---|---|---|
| committer | Thomas Huth <thuth@redhat.com> | 2024-12-17 20:29:03 +0100 |
| commit | a44b318fc45d59c0904c887957fb24421bf4ddd4 (patch) | |
| tree | a2c0ec77a5aec5f120a8a80d09fbede55edfcc25 /tests/avocado/boot_linux_console.py | |
| parent | 799d683026e1f1b18380c2629f6c882f4c6c568b (diff) | |
| download | focaccia-qemu-a44b318fc45d59c0904c887957fb24421bf4ddd4.tar.gz focaccia-qemu-a44b318fc45d59c0904c887957fb24421bf4ddd4.zip | |
tests/functional: Convert the arm virt avocado test
Straight forward conversion, basically just the hashsums needed to be updated to sha256 now. Message-ID: <20241206102358.1186644-7-thuth@redhat.com> Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'tests/avocado/boot_linux_console.py')
| -rw-r--r-- | tests/avocado/boot_linux_console.py | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/tests/avocado/boot_linux_console.py b/tests/avocado/boot_linux_console.py index 4bd1465ba3..c15f39ae1f 100644 --- a/tests/avocado/boot_linux_console.py +++ b/tests/avocado/boot_linux_console.py @@ -94,24 +94,3 @@ class BootLinuxConsole(LinuxKernelTest): self.vm.launch() console_pattern = 'Kernel command line: %s' % kernel_command_line self.wait_for_console_pattern(console_pattern) - - def test_arm_virt(self): - """ - :avocado: tags=arch:arm - :avocado: tags=machine:virt - :avocado: tags=accel:tcg - """ - kernel_url = ('https://archives.fedoraproject.org/pub/archive/fedora' - '/linux/releases/29/Everything/armhfp/os/images/pxeboot' - '/vmlinuz') - kernel_hash = 'e9826d741b4fb04cadba8d4824d1ed3b7fb8b4d4' - kernel_path = self.fetch_asset(kernel_url, asset_hash=kernel_hash) - - self.vm.set_console() - kernel_command_line = (self.KERNEL_COMMON_COMMAND_LINE + - 'console=ttyAMA0') - self.vm.add_args('-kernel', kernel_path, - '-append', kernel_command_line) - self.vm.launch() - console_pattern = 'Kernel command line: %s' % kernel_command_line - self.wait_for_console_pattern(console_pattern) |