summaryrefslogtreecommitdiff
path: root/tests
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:05:41 -0300
commit0b3adc95c9d57739988b8ccfe8e919f56302605b (patch)
treece3699777a1dfd200b3bb26548f9db6fe9a61f72 /tests
parent40ad7770e48b5dfc7e7e3c08181319548a0670bc (diff)
downloadglade-0b3adc95c9d57739988b8ccfe8e919f56302605b.tar.gz
Restored widgets classes that do not fail anymore in gtk 3.12
Diffstat (limited to 'tests')
-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));