diff options
author | Matthias Clasen <mclasen@redhat.com> | 2019-02-08 09:04:08 -0500 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2019-02-08 09:04:08 -0500 |
commit | 038a9b2b849b29be3cabd8cd6d8170eaa0ac2cc8 (patch) | |
tree | 3f0c39555413355442c56cecbb351a370d94938c /testsuite | |
parent | b8903a4aba32783087ef30280a376307c03ad1ee (diff) | |
download | gtk+-038a9b2b849b29be3cabd8cd6d8170eaa0ac2cc8.tar.gz |
notify test: Omit GtkStackPage::position
We can't change positions without a stack.
Diffstat (limited to 'testsuite')
-rw-r--r-- | testsuite/gtk/notify.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/testsuite/gtk/notify.c b/testsuite/gtk/notify.c index 238e299150..228195b2d3 100644 --- a/testsuite/gtk/notify.c +++ b/testsuite/gtk/notify.c @@ -555,6 +555,10 @@ test_type (gconstpointer data) g_str_equal (pspec->name, "visible-child-name")) continue; + if (pspec->owner_type == GTK_TYPE_STACK_PAGE && /* Can't change position without a stack */ + g_str_equal (pspec->name, "position")) + continue; + if (pspec->owner_type == GTK_TYPE_POPOVER_MENU && g_str_equal (pspec->name, "visible-submenu")) continue; |