mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-07-30 13:53:54 -06:00
tests/boot_linux_console: rename the x86_64 after the arch and machine
Given that the test is specific to x86_64 and pc, and new tests are going to be added to the same class, let's rename it accordingly. Also, let's make the class documentation not architecture specific. Signed-off-by: Cleber Rosa <crosa@redhat.com> Reviewed-by: Caio Carrara <ccarrara@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com> Reviewed-by: Cornelia Huck <cohuck@redhat.com> Message-Id: <20190312171824.5134-8-crosa@redhat.com> Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
This commit is contained in:
parent
b910545fbf
commit
78664ed849
1 changed files with 7 additions and 5 deletions
|
@ -15,15 +15,17 @@ from avocado_qemu import Test
|
||||||
|
|
||||||
class BootLinuxConsole(Test):
|
class BootLinuxConsole(Test):
|
||||||
"""
|
"""
|
||||||
Boots a x86_64 Linux kernel and checks that the console is operational
|
Boots a Linux kernel and checks that the console is operational and the
|
||||||
and the kernel command line is properly passed from QEMU to the kernel
|
kernel command line is properly passed from QEMU to the kernel
|
||||||
|
|
||||||
:avocado: tags=arch:x86_64
|
|
||||||
"""
|
"""
|
||||||
|
|
||||||
timeout = 60
|
timeout = 60
|
||||||
|
|
||||||
def test(self):
|
def test_x86_64_pc(self):
|
||||||
|
"""
|
||||||
|
:avocado: tags=arch:x86_64
|
||||||
|
:avocado: tags=machine:pc
|
||||||
|
"""
|
||||||
kernel_url = ('https://mirrors.kernel.org/fedora/releases/28/'
|
kernel_url = ('https://mirrors.kernel.org/fedora/releases/28/'
|
||||||
'Everything/x86_64/os/images/pxeboot/vmlinuz')
|
'Everything/x86_64/os/images/pxeboot/vmlinuz')
|
||||||
kernel_hash = '238e083e114c48200f80d889f7e32eeb2793e02a'
|
kernel_hash = '238e083e114c48200f80d889f7e32eeb2793e02a'
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue