[glade] tests/create-widgets: skip GtkRecentChooser because it tries to remove an unknown source id



commit c01347253bf13b7faaadf8a7768adab47c2cf9eb
Author: Juan Pablo Ugarte <juanpablougarte gmail com>
Date:   Wed Dec 18 17:49:03 2013 -0300

    tests/create-widgets: skip GtkRecentChooser because it tries to remove an unknown source id

 tests/create-widgets.c |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)
---
diff --git a/tests/create-widgets.c b/tests/create-widgets.c
index 605ea26..ca2cd15 100644
--- a/tests/create-widgets.c
+++ b/tests/create-widgets.c
@@ -102,7 +102,9 @@ main (int   argc,
          /* 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))
+         !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))
        {
          gchar *test_path = g_strdup_printf ("/CreateWidget/%s", glade_widget_adaptor_get_name (adaptor));
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]