summaryrefslogtreecommitdiff
path: root/testsuite
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2016-04-25 23:08:39 -0400
committerMatthias Clasen <mclasen@redhat.com>2016-04-25 23:09:19 -0400
commitdb1a39a81750c992c6f73be8626d1876a40defa7 (patch)
treec85cfdd308154ff0fa5fefb6e93c0516b5446c61 /testsuite
parent43312bb8c2f3eb579266e928363c9fba41b660a1 (diff)
downloadgtk+-db1a39a81750c992c6f73be8626d1876a40defa7.tar.gz
notify test: Skip GtkFontButton::font-name
This is not freely settable.
Diffstat (limited to 'testsuite')
-rw-r--r--testsuite/gtk/notify.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/testsuite/gtk/notify.c b/testsuite/gtk/notify.c
index 188e160cf9..49e567343e 100644
--- a/testsuite/gtk/notify.c
+++ b/testsuite/gtk/notify.c
@@ -666,6 +666,14 @@ test_type (gconstpointer data)
g_str_equal (pspec->name, "accelerator"))
continue;
+ if (g_type_is_a (type, GTK_TYPE_FONT_CHOOSER) &&
+ g_str_equal (pspec->name, "font"))
+ continue;
+
+ if (g_type_is_a (type, GTK_TYPE_FONT_BUTTON) &&
+ g_str_equal (pspec->name, "font-name"))
+ continue;
+
if (g_test_verbose ())
g_print ("Property %s.%s\n", g_type_name (pspec->owner_type), pspec->name);