From: Cole Robinson Date: Wed, 13 Nov 2019 21:09:35 +0000 (-0500) Subject: tests: fix modules-test 'duplicate test case' error X-Git-Tag: v4.2.1~70 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=3729ff3032599510600475f3dfd4e30d34923976;p=thirdparty%2Fqemu.git tests: fix modules-test 'duplicate test case' error ./configure --enable-sdl --audio-drv-list=sdl --enable-modules Will generate two identical test names: /$arch/module/load/sdl Which generates an error like: (tests/modules-test:23814): GLib-ERROR **: 18:23:06.359: duplicate test case path: /aarch64//module/load/sdl Add the subsystem prefix in the name as well, so instead we get: /$arch/module/load/audio-sdl /$arch/module/load/ui-sdl Signed-off-by: Cole Robinson Message-Id: Reviewed-by: Marc-André Lureau Reviewed-by: Thomas Huth Reviewed-by: Philippe Mathieu-Daudé Signed-off-by: Thomas Huth (cherry picked from commit eca3a945234a5f0a499860dd11df64b5f1a2e0a5) Signed-off-by: Michael Roth --- diff --git a/tests/modules-test.c b/tests/modules-test.c index d1a6ace218c..88217686e14 100644 --- a/tests/modules-test.c +++ b/tests/modules-test.c @@ -64,7 +64,8 @@ int main(int argc, char *argv[]) g_test_init(&argc, &argv, NULL); for (i = 0; i < G_N_ELEMENTS(modules); i += 2) { - char *testname = g_strdup_printf("/module/load/%s", modules[i + 1]); + char *testname = g_strdup_printf("/module/load/%s%s", + modules[i], modules[i + 1]); qtest_add_data_func(testname, modules + i, test_modules_load); g_free(testname); }