Am 05.01.2021 um 11:04 hat Alex Bennée geschrieben:
> The "auto" documentation states:
>
> That means they should run with every QEMU binary (also non-x86)
>
> which is not the case as the check-system-fedora build which only
> includes a rag tag group of rare and deprecated targets doesn't
> support the virtio device required.
>
> Signed-off-by: Alex Bennée <[email protected]>
I think the better solution would be to do something like in 192 so that
the test is still run at least for one binary:
if [ "$QEMU_DEFAULT_MACHINE" != "pc" ]; then
_notrun "Requires a PC machine"
fi
Kevin