tests/avocado: add a simple i386 replay kernel test
There are a number of bugs against 32 bit x86 on the tracker. Lets at least establish a baseline pure kernel boot can do record/replay before we start looking at the devices. Acked-by: Pavel Dovgalyuk <Pavel.Dovgalyuk@ispras.ru> Acked-by: Richard Henderson <richard.henderson@linaro.org> Signed-off-by: Alex Bennée <alex.bennee@linaro.org> Message-Id: <20231211091346.14616-2-alex.bennee@linaro.org>
This commit is contained in:
parent
0c1eccd368
commit
940f70cc1c
@ -82,6 +82,22 @@ class ReplayKernelBase(LinuxKernelTest):
|
||||
|
||||
class ReplayKernelNormal(ReplayKernelBase):
|
||||
|
||||
def test_i386_pc(self):
|
||||
"""
|
||||
:avocado: tags=arch:i386
|
||||
:avocado: tags=machine:pc
|
||||
"""
|
||||
kernel_url = ('https://storage.tuxboot.com/20230331/i386/bzImage')
|
||||
kernel_hash = 'a3e5b32a354729e65910f5a1ffcda7c14a6c12a55e8213fb86e277f1b76ed956'
|
||||
kernel_path = self.fetch_asset(kernel_url,
|
||||
asset_hash=kernel_hash,
|
||||
algorithm = "sha256")
|
||||
|
||||
kernel_command_line = self.KERNEL_COMMON_COMMAND_LINE + 'console=ttyS0'
|
||||
console_pattern = 'VFS: Cannot open root device'
|
||||
|
||||
self.run_rr(kernel_path, kernel_command_line, console_pattern, shift=5)
|
||||
|
||||
# See https://gitlab.com/qemu-project/qemu/-/issues/2010
|
||||
@skipUnless(os.getenv('QEMU_TEST_FLAKY_TESTS'), 'Test sometimes gets stuck')
|
||||
def test_x86_64_pc(self):
|
||||
|
Loading…
Reference in New Issue
Block a user