Cleber Rosa <cr...@redhat.com> writes:
> On Sun, Sep 15, 2019 at 11:19:37PM +0200, Philippe Mathieu-Daudé wrote: >> User case from: >> https://mail.coreboot.org/pipermail/openbios/2018-May/010360.html >> >> Signed-off-by: Philippe Mathieu-Daudé <f4...@amsat.org> >> --- >> 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') > > Is 192 a magic number (some kind of limit)? Or just a value to check > against later? Just the memory configured for the machine, checked bellow. Or are you wondering why 192m and not any other amount? >> + >> + 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') >> + > > On my testing, this is a very stable test, I'm only getting PASSes. <snip> -- Alex Bennée