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>
staging
Thomas Huth 2021-12-20 09:10:54 +01:00
parent 95c0b77018
commit d6a3dd7418
1 changed files with 5 additions and 0 deletions

View File

@ -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);