Re: [RFC PATCH v2 13/19] tests: do not run test-hmp on all machines for ARM KVM-only

2023-01-12 Thread Peter Maydell
On Wed, 11 Jan 2023 at 12:36, Fabiano Rosas wrote: > What remains is changing the Kconfig to not bring all the > machines. Nowadays for KVM is the 'virt' machine the only one we use? I think perhaps also xlnx-versal-virt -- at any rate, the source files include some KVM related headers... Alista

Re: [RFC PATCH v2 13/19] tests: do not run test-hmp on all machines for ARM KVM-only

2023-01-12 Thread Fabiano Rosas
Richard Henderson writes: > On 1/11/23 04:36, Fabiano Rosas wrote: >> Nowadays for KVM is the 'virt' machine the only one we use? > > Also sbsa-ref. It seems not, sbsa_ref_init has this: if (kvm_enabled()) { error_report("sbsa-ref: KVM is not supported for this machine"); exit(1); }

Re: [RFC PATCH v2 13/19] tests: do not run test-hmp on all machines for ARM KVM-only

2023-01-11 Thread Richard Henderson
On 1/11/23 04:36, Fabiano Rosas wrote: Nowadays for KVM is the 'virt' machine the only one we use? Also sbsa-ref. r~

Re: [RFC PATCH v2 13/19] tests: do not run test-hmp on all machines for ARM KVM-only

2023-01-11 Thread Fabiano Rosas
Claudio Fontana writes: > On 1/10/23 15:02, Peter Maydell wrote: >> On Tue, 10 Jan 2023 at 13:36, Fabiano Rosas wrote: >>> >>> Peter Maydell writes: >>> On Tue, 10 Jan 2023 at 13:00, Fabiano Rosas wrote: > > Thomas Huth writes: > >> On 09/01/2023 23.42, Fabiano Rosas wrot

Re: [RFC PATCH v2 13/19] tests: do not run test-hmp on all machines for ARM KVM-only

2023-01-11 Thread Thomas Huth
On 11/01/2023 13.08, Claudio Fontana wrote: On 1/10/23 15:02, Peter Maydell wrote: On Tue, 10 Jan 2023 at 13:36, Fabiano Rosas wrote: Peter Maydell writes: On Tue, 10 Jan 2023 at 13:00, Fabiano Rosas wrote: Thomas Huth writes: On 09/01/2023 23.42, Fabiano Rosas wrote: From: Claudio

Re: [RFC PATCH v2 13/19] tests: do not run test-hmp on all machines for ARM KVM-only

2023-01-11 Thread Claudio Fontana
On 1/10/23 15:02, Peter Maydell wrote: > On Tue, 10 Jan 2023 at 13:36, Fabiano Rosas wrote: >> >> Peter Maydell writes: >> >>> On Tue, 10 Jan 2023 at 13:00, Fabiano Rosas wrote: Thomas Huth writes: > On 09/01/2023 23.42, Fabiano Rosas wrote: >> From: Claudio Fontana

Re: [RFC PATCH v2 13/19] tests: do not run test-hmp on all machines for ARM KVM-only

2023-01-10 Thread Peter Maydell
On Tue, 10 Jan 2023 at 13:36, Fabiano Rosas wrote: > > Peter Maydell writes: > > > On Tue, 10 Jan 2023 at 13:00, Fabiano Rosas wrote: > >> > >> Thomas Huth writes: > >> > >> > On 09/01/2023 23.42, Fabiano Rosas wrote: > >> >> From: Claudio Fontana > >> >> > >> >> on ARM we currently list and b

Re: [RFC PATCH v2 13/19] tests: do not run test-hmp on all machines for ARM KVM-only

2023-01-10 Thread Peter Maydell
On Tue, 10 Jan 2023 at 13:00, Fabiano Rosas wrote: > > Thomas Huth writes: > > > On 09/01/2023 23.42, Fabiano Rosas wrote: > >> From: Claudio Fontana > >> > >> on ARM we currently list and build all machines, even when > >> building KVM-only, without TCG. > >> > >> Until we fix this (and we only

Re: [RFC PATCH v2 13/19] tests: do not run test-hmp on all machines for ARM KVM-only

2023-01-10 Thread Fabiano Rosas
Peter Maydell writes: > On Tue, 10 Jan 2023 at 13:00, Fabiano Rosas wrote: >> >> Thomas Huth writes: >> >> > On 09/01/2023 23.42, Fabiano Rosas wrote: >> >> From: Claudio Fontana >> >> >> >> on ARM we currently list and build all machines, even when >> >> building KVM-only, without TCG. >> >>

Re: [RFC PATCH v2 13/19] tests: do not run test-hmp on all machines for ARM KVM-only

2023-01-10 Thread Fabiano Rosas
Thomas Huth writes: > On 09/01/2023 23.42, Fabiano Rosas wrote: >> From: Claudio Fontana >> >> on ARM we currently list and build all machines, even when >> building KVM-only, without TCG. >> >> Until we fix this (and we only list and build machines that are >> compatible with KVM), only test

Re: [RFC PATCH v2 13/19] tests: do not run test-hmp on all machines for ARM KVM-only

2023-01-10 Thread Thomas Huth
On 09/01/2023 23.42, Fabiano Rosas wrote: From: Claudio Fontana on ARM we currently list and build all machines, even when building KVM-only, without TCG. Until we fix this (and we only list and build machines that are compatible with KVM), only test specifically using the "virt" machine in th

[RFC PATCH v2 13/19] tests: do not run test-hmp on all machines for ARM KVM-only

2023-01-09 Thread Fabiano Rosas
From: Claudio Fontana on ARM we currently list and build all machines, even when building KVM-only, without TCG. Until we fix this (and we only list and build machines that are compatible with KVM), only test specifically using the "virt" machine in this case. Signed-off-by: Claudio Fontana Si