summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJuan Pablo Ugarte <juanpablougarte@gmail.com>2014-03-26 17:04:31 -0300
committerJuan Pablo Ugarte <juanpablougarte@gmail.com>2014-03-26 17:10:39 -0300
commit9f3c2b79c48ca817b647b372bbb24ee48c756d03 (patch)
tree6718c1adf540f20688afd0ebeb11019ad6a1a4b2
parent5f10a02793fb6f5eee93fd6cd0a708e58b397497 (diff)
downloadglade-9f3c2b79c48ca817b647b372bbb24ee48c756d03.tar.gz
Restored widgets classes that do not fail anymore in gtk 3.12
-rw-r--r--tests/create-widgets.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/tests/create-widgets.c b/tests/create-widgets.c
index 32b750ff..6ea73a0f 100644
--- a/tests/create-widgets.c
+++ b/tests/create-widgets.c
@@ -104,16 +104,10 @@ main (int argc,
adaptor_type = glade_widget_adaptor_get_object_type (adaptor);
if (G_TYPE_IS_INSTANTIATABLE (adaptor_type) && !G_TYPE_IS_ABSTRACT (adaptor_type) &&
- /* FIXME: Status Icon crashes at dispose time unrealizing it's GtkTrayIcon without a window */
- adaptor_type != GTK_TYPE_STATUS_ICON &&
/* FIXME: FileChooserButton leaks a GTask which will crash in the following test */
adaptor_type != GTK_TYPE_FILE_CHOOSER_BUTTON &&
- /* FIXME: App choosers leak some async operations after finalization, causing subsequent tests to fail */
- !g_type_is_a (adaptor_type, GTK_TYPE_APP_CHOOSER) &&
/* FIXME: GtkRecentChooser tries to remove an unknown source id */
- !g_type_is_a (adaptor_type, GTK_TYPE_RECENT_CHOOSER) &&
- /* FIXME: GtkAboutDialog in gtk 3.12 does not like to have widgets added in the action area by default */
- !g_type_is_a (adaptor_type, GTK_TYPE_ABOUT_DIALOG))
+ !g_type_is_a (adaptor_type, GTK_TYPE_RECENT_CHOOSER))
{
gchar *test_path = g_strdup_printf ("/CreateWidget/%s", glade_widget_adaptor_get_name (adaptor));