From: Thomas Huth Date: Mon, 20 Dec 2021 08:10:52 +0000 (+0100) Subject: tests/qtest: Improve endianness-test to work with missing machines and devices X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=9cbd66028b82c57f3f24399c6851f21495ccc775;p=qmiga%2Fqemu.git tests/qtest: Improve endianness-test to work with missing machines and devices The users might have built QEMU with less machines or without the i82378 superio device. Add some checks to the endianess-test so that it is able to deal with such stripped down QEMU versions, too. Message-Id: <20211220081054.151515-3-thuth@redhat.com> Signed-off-by: Thomas Huth --- diff --git a/tests/qtest/endianness-test.c b/tests/qtest/endianness-test.c index 09ecb531f1..9c03b72dc9 100644 --- a/tests/qtest/endianness-test.c +++ b/tests/qtest/endianness-test.c @@ -281,7 +281,10 @@ int main(int argc, char **argv) for (i = 0; test_cases[i].arch; i++) { gchar *path; - if (strcmp(test_cases[i].arch, arch) != 0) { + + if (!g_str_equal(test_cases[i].arch, arch) || + !qtest_has_machine(test_cases[i].machine) || + (test_cases[i].superio && !qtest_has_device(test_cases[i].superio))) { continue; } path = g_strdup_printf("endianness/%s",