[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH v2 3/6] tests/acceptance: Test OpenBIOS on the PReP/
From: |
Philippe Mathieu-Daudé |
Subject: |
[Qemu-devel] [PATCH v2 3/6] tests/acceptance: Test OpenBIOS on the PReP/40p |
Date: |
Sun, 15 Sep 2019 23:19:37 +0200 |
User case from:
https://mail.coreboot.org/pipermail/openbios/2018-May/010360.html
Signed-off-by: Philippe Mathieu-Daudé <address@hidden>
---
tests/acceptance/ppc_prep_40p.py | 32 ++++++++++++++++++++++++++++++++
1 file changed, 32 insertions(+)
diff --git a/tests/acceptance/ppc_prep_40p.py b/tests/acceptance/ppc_prep_40p.py
index a0eac40d9f..87b5311b89 100644
--- a/tests/acceptance/ppc_prep_40p.py
+++ b/tests/acceptance/ppc_prep_40p.py
@@ -82,3 +82,35 @@ class IbmPrep40pMachine(Test):
self.wait_for_console_pattern(fw_banner)
prompt_msg = 'Type any key to interrupt automatic startup'
self.wait_for_console_pattern(prompt_msg)
+
+ def test_openbios_192m(self):
+ """
+ :avocado: tags=arch:ppc
+ :avocado: tags=machine:40p
+ """
+ self.vm.set_machine('40p')
+ self.vm.set_console()
+ self.vm.add_args('-m', '192')
+
+ self.vm.launch()
+ self.wait_for_console_pattern('>> OpenBIOS')
+ self.wait_for_console_pattern('>> Memory: 192M')
+ self.wait_for_console_pattern('>> CPU type PowerPC,604')
+
+ def test_openbios_and_netbsd(self):
+ """
+ :avocado: tags=arch:ppc
+ :avocado: tags=machine:40p
+ """
+ drive_url = ('https://ftp.netbsd.org/pub/NetBSD/iso/7.1.2/'
+ 'NetBSD-7.1.2-prep.iso')
+ drive_hash = '78734c1bdda79778f0b6f391969ad2458ed8981c'
+ drive_path = self.fetch_asset(drive_url, asset_hash=drive_hash)
+
+ self.vm.set_machine('40p')
+ self.vm.set_console()
+ self.vm.add_args('-cdrom', drive_path,
+ '-boot', 'd')
+
+ self.vm.launch()
+ self.wait_for_console_pattern('NetBSD/prep BOOT, Revision 1.9')
--
2.20.1
- Re: [Qemu-devel] [PATCH v2 1/6] tests/acceptance: Add test that runs NetBSD 4.0 installer on PRep/40p, (continued)