summary refs log tree commit diff stats
path: root/tests/qtest/cdrom-test.c
diff options
context:
space:
mode:
authorThomas Huth <thuth@redhat.com>2021-12-01 11:43:47 +0100
committerThomas Huth <thuth@redhat.com>2021-12-15 08:08:59 +0100
commit719051ca3fd0ee765d8a80670df1a0292aa566f0 (patch)
treee51fcebb99953a8c34bbe22bdb85fd8db6479450 /tests/qtest/cdrom-test.c
parent5516a3b592def4de7fa78153912470f160814e5a (diff)
downloadfocaccia-qemu-719051ca3fd0ee765d8a80670df1a0292aa566f0.tar.gz
focaccia-qemu-719051ca3fd0ee765d8a80670df1a0292aa566f0.zip
tests/qtest: Add a function to check whether a machine is available
It is nowadays possible to build QEMU with a reduced set of machines
in each binary. However, the qtests still hard-code the expected
machines and fail if the binary does not feature the required machine.
Let's get a little bit more flexible here: Add a function that can be
used to query whether a certain machine is available or not, and use
it in some tests as an example (more work has to be done in other
tests which will follow later).

Message-Id: <20211201104347.51922-5-thuth@redhat.com>
Acked-by: John Snow <jsnow@redhat.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'tests/qtest/cdrom-test.c')
-rw-r--r--tests/qtest/cdrom-test.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/tests/qtest/cdrom-test.c b/tests/qtest/cdrom-test.c
index 5af944a5fb..c1fcac5c45 100644
--- a/tests/qtest/cdrom-test.c
+++ b/tests/qtest/cdrom-test.c
@@ -109,9 +109,11 @@ static void test_cdrom_param(gconstpointer data)
 static void add_cdrom_param_tests(const char **machines)
 {
     while (*machines) {
-        char *testname = g_strdup_printf("cdrom/param/%s", *machines);
-        qtest_add_data_func(testname, *machines, test_cdrom_param);
-        g_free(testname);
+        if (qtest_has_machine(*machines)) {
+            char *testname = g_strdup_printf("cdrom/param/%s", *machines);
+            qtest_add_data_func(testname, *machines, test_cdrom_param);
+            g_free(testname);
+        }
         machines++;
     }
 }