On Tue, Jan 23, 2018 at 09:08:01AM +0100, Igor Mammedov wrote: > Check that "$QEMU -M none -cpu FOO" starts QEMU without error > > Signed-off-by: Igor Mammedov <imamm...@redhat.com> [...] > +struct arch2cpu { > + const char *arch; > + const char *cpu_model; > +}; > + > +static struct arch2cpu cpus_map[] = { > + /* tested targets list */ > +};
Why are we testing only a single CPU model on each target (and requiring one entry for each architecture in this table), instead of just running query-cpu-definitions and testing all CPU models? -- Eduardo