mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-11 03:24:58 -06:00
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
1 changed files with 5 additions and 0 deletions
|
@ -34,6 +34,11 @@ static void test_a_boot_order(const char *machine,
|
||||||
uint64_t actual;
|
uint64_t actual;
|
||||||
QTestState *qts;
|
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 " : "",
|
qts = qtest_initf("-nodefaults%s%s %s", machine ? " -M " : "",
|
||||||
machine ?: "", test_args);
|
machine ?: "", test_args);
|
||||||
actual = read_boot_order(qts);
|
actual = read_boot_order(qts);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue