[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v2 01/16] tests/avocado: add a simple i386 replay kernel test
From: |
Alex Bennée |
Subject: |
[PATCH v2 01/16] tests/avocado: add a simple i386 replay kernel test |
Date: |
Mon, 11 Dec 2023 09:13:30 +0000 |
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.
Message-Id: <20231205204106.95531-2-alex.bennee@linaro.org>
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>
---
tests/avocado/replay_kernel.py | 16 ++++++++++++++++
1 file changed, 16 insertions(+)
diff --git a/tests/avocado/replay_kernel.py b/tests/avocado/replay_kernel.py
index c37afa662c..1eaa36444c 100644
--- a/tests/avocado/replay_kernel.py
+++ b/tests/avocado/replay_kernel.py
@@ -82,6 +82,22 @@ def run_rr(self, kernel_path, kernel_command_line,
console_pattern,
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):
--
2.39.2
- [PATCH v2 00/16] record/replay fixes: attempting to get avocado green, Alex Bennée, 2023/12/11
- [PATCH v2 01/16] tests/avocado: add a simple i386 replay kernel test,
Alex Bennée <=
- [PATCH v2 02/16] tests/avocado: fix typo in replay_linux, Alex Bennée, 2023/12/11
- [PATCH v2 04/16] scripts/replay-dump: update to latest format, Alex Bennée, 2023/12/11
- [PATCH v2 03/16] tests/avocado: modernise the drive args for replay_linux, Alex Bennée, 2023/12/11
- [PATCH v2 05/16] scripts/replay_dump: track total number of instructions, Alex Bennée, 2023/12/11
- [PATCH v2 07/16] replay: add proper kdoc for ReplayState, Alex Bennée, 2023/12/11
- [PATCH v2 09/16] replay: introduce a central report point for sync errors, Alex Bennée, 2023/12/11
- [PATCH v2 06/16] replay: remove host_clock_last, Alex Bennée, 2023/12/11
- [PATCH v2 10/16] replay/replay-char: use report_sync_error, Alex Bennée, 2023/12/11
- [PATCH v2 08/16] replay: make has_unread_data a bool, Alex Bennée, 2023/12/11