mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-14 20:51:07 +00:00
Skip all LayoutChild when testing
GtkLayoutChild instances are created on demand once we have a widget, a GtkLayoutManager, and a child widget. This makes testing their creation fairly tricky. Let's skip them, for the time being.
This commit is contained in:
parent
dd5c981b63
commit
fc33bf2d1f
@ -77,6 +77,7 @@ test_type (gconstpointer data)
|
||||
/* These can't be freely constructed/destroyed */
|
||||
if (g_type_is_a (type, GTK_TYPE_APPLICATION) ||
|
||||
g_type_is_a (type, GDK_TYPE_PIXBUF_LOADER) ||
|
||||
g_type_is_a (type, GTK_TYPE_LAYOUT_CHILD) ||
|
||||
#ifdef G_OS_UNIX
|
||||
g_type_is_a (type, GTK_TYPE_PRINT_JOB) ||
|
||||
#endif
|
||||
|
@ -370,6 +370,7 @@ test_type (gconstpointer data)
|
||||
/* These can't be freely constructed/destroyed */
|
||||
if (g_type_is_a (type, GTK_TYPE_APPLICATION) ||
|
||||
g_type_is_a (type, GDK_TYPE_PIXBUF_LOADER) ||
|
||||
g_type_is_a (type, GTK_TYPE_LAYOUT_CHILD) ||
|
||||
#ifdef G_OS_UNIX
|
||||
g_type_is_a (type, GTK_TYPE_PRINT_JOB) ||
|
||||
#endif
|
||||
|
@ -72,6 +72,11 @@ test_finalize_object (gconstpointer data)
|
||||
NULL);
|
||||
g_object_unref (list_store);
|
||||
}
|
||||
else if (g_type_is_a (test_type, GTK_TYPE_LAYOUT_CHILD))
|
||||
{
|
||||
g_test_skip ("Skipping GtkLayoutChild type");
|
||||
return;
|
||||
}
|
||||
else
|
||||
object = g_object_new (test_type, NULL);
|
||||
g_assert (G_IS_OBJECT (object));
|
||||
|
Loading…
Reference in New Issue
Block a user