summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2016-04-25 23:08:39 -0400
committerMatthias Clasen <mclasen@redhat.com>2016-05-05 15:03:59 -0400
commitb38e4e0ac03fc583d8a8fe169109ef27a9bdcf50 (patch)
treea4ddc467bfdaf2c8763fa30d019ae822f26c0e8a
parent4b4533ef6880e17c9812624c6387d4ade46b20b7 (diff)
downloadgtk+-b38e4e0ac03fc583d8a8fe169109ef27a9bdcf50.tar.gz
notify test: Skip GtkFontButton::font-name
This is not freely settable.
-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);