Re: [PATCH 6/8] tests/vm: add --boot-console switch

2020-01-27 Thread Robert Foley
On Mon, 27 Jan 2020 at 07:56, Alex Bennée wrote: > > @@ -523,6 +525,10 @@ def main(vmcls, config=None): > > if args.snapshot: > > img += ",snapshot=on" > > vm.boot(img) > > +wait_boot = getattr(vm, "wait_boot", None) > > Didn't we add a __getattr method, so

Re: [PATCH 6/8] tests/vm: add --boot-console switch

2020-01-27 Thread Alex Bennée
Robert Foley writes: > Added ability to view console during boot via > --boot-console switch. This helps debug issues that occur > during the boot sequence. > > Signed-off-by: Robert Foley > Reviewed-by: Peter Puhov > --- > tests/vm/basevm.py | 6 ++ > 1 file changed, 6 insertions(+) >

[PATCH 6/8] tests/vm: add --boot-console switch

2020-01-24 Thread Robert Foley
Added ability to view console during boot via --boot-console switch. This helps debug issues that occur during the boot sequence. Signed-off-by: Robert Foley Reviewed-by: Peter Puhov --- tests/vm/basevm.py | 6 ++ 1 file changed, 6 insertions(+) diff --git a/tests/vm/basevm.py