aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorNicholas Piggin <npiggin@gmail.com>2023-06-22 19:33:56 +1000
committerCédric Le Goater <clg@kaod.org>2023-06-25 22:41:30 +0200
commit8f4c627b2f1479c15822ab2123ff4bdd63c24417 (patch)
tree3e070ea40d84109bd8e38019ad77ff7ebb3ebf70 /tests
parentdc5e072188ea622071bab47c4f899817d6ef1295 (diff)
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 <npiggin@gmail.com> Reviewed-by: Cédric Le Goater <clg@kaod.org> Signed-off-by: Cédric Le Goater <clg@kaod.org>
Diffstat (limited to 'tests')
-rw-r--r--tests/avocado/ppc_pseries.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/avocado/ppc_pseries.py b/tests/avocado/ppc_pseries.py
index d8b04dc3ea..a152cf222e 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)