testsuite: Skip the skipping

meson 0.55 considers a test failed if we skip any cases.
Until that is fixed, just skip them quietly.

See https://github.com/mesonbuild/meson/issues/7515
This commit is contained in:
Matthias Clasen 2020-07-29 16:35:36 -04:00
parent 53e74c365b
commit 2e80658251

View File

@ -82,9 +82,12 @@ test_finalize_object (gconstpointer data)
}
else if (g_type_is_a (test_type, GTK_TYPE_LAYOUT_CHILD))
{
#if 0
// See https://github.com/mesonbuild/meson/issues/7515
char *msg = g_strdup_printf ("Skipping %s", g_type_name (test_type));
g_test_skip (msg);
g_free (msg);
#endif
return;
}
else