tests/qtest/boot-order-test: Check whether machines are available
authorThomas Huth <thuth@redhat.com>
Mon, 20 Dec 2021 08:10:54 +0000 (09:10 +0100)
committerThomas Huth <thuth@redhat.com>
Wed, 22 Dec 2021 07:13:05 +0000 (08:13 +0100)
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>
tests/qtest/boot-order-test.c

index fac580d6c45cf8d4e8dc72dd6a02758a881766ba..f1f59b1261fe7917abbe19dcda2dbe5fbdc6154c 100644 (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);