diff options
author | Christian Dywan <cdywan@src.gnome.org> | 2008-10-14 13:23:44 +0000 |
---|---|---|
committer | Christian Dywan <cdywan@src.gnome.org> | 2008-10-14 13:23:44 +0000 |
commit | ca872e88458bf8a33b5e9eeab8b442f23e8626a3 (patch) | |
tree | 8fd8a46deb75d79e4f9cd7ab288426994e3544b5 | |
parent | 2377e48038262b371d750fc0e79664536739a266 (diff) | |
download | gtk+-ca872e88458bf8a33b5e9eeab8b442f23e8626a3.tar.gz |
556150 – gtk 'object' property test fixing
* gtk/tests/object.c (list_ignore_properties):
Remove some recently fixed properties from the exception list
svn path=/trunk/; revision=21653
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | gtk/tests/object.c | 14 |
2 files changed, 7 insertions, 14 deletions
@@ -1,3 +1,10 @@ +2008-10-14 Christian Dywan <christian@imendio.com> + + 556150 – gtk 'object' property test fixing + + * gtk/tests/object.c (list_ignore_properties): + Remove some recently fixed properties from the exception list + 2008-10-13 Matthias Clasen <mclasen@redhat.com> Bug 555779 – GtkCellRendererPixbuf crashed on failed GIcon lookup diff --git a/gtk/tests/object.c b/gtk/tests/object.c index ae61cf6a6f..c243913c50 100644 --- a/gtk/tests/object.c +++ b/gtk/tests/object.c @@ -87,11 +87,7 @@ list_ignore_properties (gboolean buglist) }; /* properties suspected to be Gdk/Gtk+ bugs */ static const IgnoreProperty bug_properties[] = { - { "GtkMessageDialog", "image", NULL, }, /* FIXME: should accept NULL images */ - { "GtkOptionMenu", "menu", NULL, }, /* FIXME: should accept NULL menus */ { "GtkComboBox", "active", (void*) MATCH_ANY_VALUE }, /* FIXME: triggers NULL model bug */ - { "GtkComboBoxEntry", "text-column", (void*) 0xffffffff }, /* FIXME: triggers signedness bug */ - { "GtkCTree", "indent", (void*) MATCH_ANY_VALUE }, /* FIXME: triggers signedness bug */ { "GtkCTree", "spacing", (void*) MATCH_ANY_VALUE }, /* FIXME: triggers signedness bug */ { "GtkCurve", "curve-type", (void*) MATCH_ANY_VALUE }, /* FIXME: triggers OOM */ { "GtkCurve", "min-x", (void*) 0x80000000 }, /* FIXME: triggers coordinate OOB */ @@ -100,18 +96,8 @@ list_ignore_properties (gboolean buglist) { "GtkCurve", "max-y", (void*) 0x80000000 }, /* FIXME: triggers coordinate OOB */ { "GtkFileChooserButton", "local-only", (void*) MATCH_ANY_VALUE }, /* FIXME: triggers NULL path assertion */ { "GtkFileChooserDialog", "local-only", (void*) MATCH_ANY_VALUE }, /* FIXME: triggers NULL path assertion */ - { "GtkFileChooserDialog", "action", (void*) MATCH_ANY_VALUE }, /* FIXME: triggers closure->ref_count assertion */ - { "GtkFileChooserDialog", "visible", (void*) TRUE }, /* FIXME: triggers gtk_window_resize assertion */ { "GtkFileChooserWidget", "local-only", (void*) MATCH_ANY_VALUE }, /* FIXME: triggers NULL path assertion */ - { "GtkFontSelection", "font-name", (void*) MATCH_ANY_VALUE }, /* FIXME: requires non-NULL GdkScreen */ - { "GtkInvisible", "has-focus", (void*) TRUE }, /* FIXME: triggers invalid window cast */ - { "GtkInvisible", "is-focus", (void*) TRUE }, /* FIXME: triggers invalid window cast */ { "GtkMenu", "tearoff-state", (void*) MATCH_ANY_VALUE }, /* FIXME: triggers NULL widget cast */ - { "GtkProgress", "activity-mode", (void*) TRUE }, /* FIXME: segfaults */ - { "GtkScaleButton", "adjustment", NULL, }, /* FIXME: should accept NULL adjustments */ - { "GtkStatusbar", "sensitive", (void*) FALSE }, /* FIXME: check if widget is realize */ - { "GtkTable", "n-rows", (void*) MATCH_ANY_VALUE }, /* FIXME: fix property minimum/maximum */ - { "GtkTable", "n-columns", (void*) MATCH_ANY_VALUE }, /* FIXME: fix property minimum/maximum */ { "GtkText", "text-position", (void*) MATCH_ANY_VALUE }, /* FIXME: segfaults, fix property minimum/maximum */ { NULL, NULL, NULL } }; |