tests/qtest/boot-order-test: Check whether machines are available
Machines might not always be compiled into the QEMU binary, so we should skip the test instead of failing if it is not available. Message-Id: <20211220081054.151515-5-thuth@redhat.com> Signed-off-by: Thomas Huth <thuth@redhat.com>
This commit is contained in:
parent
95c0b77018
commit
d6a3dd7418
@ -34,6 +34,11 @@ static void test_a_boot_order(const char *machine,
|
||||
uint64_t actual;
|
||||
QTestState *qts;
|
||||
|
||||
if (machine && !qtest_has_machine(machine)) {
|
||||
g_test_skip("Machine is not available");
|
||||
return;
|
||||
}
|
||||
|
||||
qts = qtest_initf("-nodefaults%s%s %s", machine ? " -M " : "",
|
||||
machine ?: "", test_args);
|
||||
actual = read_boot_order(qts);
|
||||
|
Loading…
Reference in New Issue
Block a user