From: Nicholas Piggin Date: Thu, 22 Jun 2023 09:33:56 +0000 (+1000) Subject: tests/avocado: boot ppc64 pseries to Linux VFS mount X-Git-Tag: v8.1.0-rc0~45^2~4 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=8f4c627b2f1479c15822ab2123ff4bdd63c24417;p=thirdparty%2Fqemu.git tests/avocado: boot ppc64 pseries to Linux VFS mount This machine can boot Linux to VFS mount, so don't stop in early boot. Signed-off-by: Nicholas Piggin Reviewed-by: Cédric Le Goater Signed-off-by: Cédric Le Goater --- diff --git a/tests/avocado/ppc_pseries.py b/tests/avocado/ppc_pseries.py index d8b04dc3ead..a152cf222e0 100644 --- a/tests/avocado/ppc_pseries.py +++ b/tests/avocado/ppc_pseries.py @@ -31,5 +31,5 @@ class pseriesMachine(QemuSystemTest): self.vm.add_args('-kernel', kernel_path, '-append', kernel_command_line) self.vm.launch() - console_pattern = 'Kernel command line: %s' % kernel_command_line + console_pattern = 'VFS: Cannot open root device' wait_for_console_pattern(self, console_pattern, self.panic_message)