Re: [kvm-unit-tests PATCH v4 07/13] scripts: Add default arguments for kvmtool

2025-07-11 Thread Thomas Huth
On 11/07/2025 16.35, Andrew Jones wrote: On Fri, Jul 11, 2025 at 01:32:33PM +0200, Thomas Huth wrote: ... +function vmm_default_opts() +{ + echo ${vmm_optname[$(vmm_get_target),default_opts]} +} This causes now a problem on s390x: https://gitlab.com/kvm-unit-tests/kvm-unit-tests/-/jobs

Re: [kvm-unit-tests PATCH v4 07/13] scripts: Add default arguments for kvmtool

2025-07-11 Thread Andrew Jones
On Fri, Jul 11, 2025 at 01:32:33PM +0200, Thomas Huth wrote: ... > > +function vmm_default_opts() > > +{ > > + echo ${vmm_optname[$(vmm_get_target),default_opts]} > > +} > > > This causes now a problem on s390x: > > https://gitlab.com/kvm-unit-tests/kvm-unit-tests/-/jobs/10604334029#L591 > >

Re: [kvm-unit-tests PATCH v4 07/13] scripts: Add default arguments for kvmtool

2025-07-11 Thread Thomas Huth
On 25/06/2025 17.48, Alexandru Elisei wrote: kvmtool, unless told otherwise, will do its best to make sure that a kernel successfully boots in a virtual machine. It does things like automatically creating a rootfs and adding extra parameters to the kernel command line. This is actively harmful to

Re: [kvm-unit-tests PATCH v4 07/13] scripts: Add default arguments for kvmtool

2025-06-26 Thread Andrew Jones
On Wed, Jun 25, 2025 at 04:48:07PM +0100, Alexandru Elisei wrote: > kvmtool, unless told otherwise, will do its best to make sure that a kernel > successfully boots in a virtual machine. It does things like automatically > creating a rootfs and adding extra parameters to the kernel command line. >