summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJuan Pablo Ugarte <juanpablougarte@gmail.com>2013-12-18 17:49:03 -0300
committerJuan Pablo Ugarte <juanpablougarte@gmail.com>2013-12-18 18:30:13 -0300
commitc01347253bf13b7faaadf8a7768adab47c2cf9eb (patch)
tree935ebeccdcc5c941321f7834944455b141f42b02 /tests
parent2155846aa1bba430713dc94e09f664e5a499bda9 (diff)
downloadglade-c01347253bf13b7faaadf8a7768adab47c2cf9eb.tar.gz
tests/create-widgets: skip GtkRecentChooser because it tries to remove an unknown source id
Diffstat (limited to 'tests')
-rw-r--r--tests/create-widgets.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/create-widgets.c b/tests/create-widgets.c
index 605ea26d..ca2cd155 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));