From ba9c358b5395cfc17e8f557d2a642d18cad4d316 Mon Sep 17 00:00:00 2001 From: Christian Dywan Date: Wed, 12 Nov 2008 15:48:51 +0000 Subject: [PATCH] =?UTF-8?q?Bug=20559619=20=E2=80=93=20invisible-char=20def?= =?UTF-8?q?ault=20cannot=20be=20tested?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 2008-11-12 Christian Dywan Bug 559619 – invisible-char default cannot be tested * gtk/tests/defaultvalue.c (test_type): Skip invisible-char when testing svn path=/trunk/; revision=21786 --- ChangeLog | 7 +++++++ gtk/tests/defaultvalue.c | 5 +++++ 2 files changed, 12 insertions(+) diff --git a/ChangeLog b/ChangeLog index 92bfa8c775..7f80c954a7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2008-11-12 Christian Dywan + + Bug 559619 – invisible-char default cannot be tested + + * gtk/tests/defaultvalue.c (test_type): + Skip invisible-char when testing + 2008-11-12 Richard Hult * gtk/gtkdnd-quartz.c: (gtk_drag_set_icon_pixmap): Implement, diff --git a/gtk/tests/defaultvalue.c b/gtk/tests/defaultvalue.c index 87f3d7709e..8451490948 100644 --- a/gtk/tests/defaultvalue.c +++ b/gtk/tests/defaultvalue.c @@ -168,6 +168,11 @@ test_type (gconstpointer data) strcmp (pspec->name, "cancel-button") == 0)) continue; + /* Default invisible char is determined at runtime */ + if (g_type_is_a (type, GTK_TYPE_ENTRY) && + strcmp (pspec->name, "invisible-char") == 0) + continue; + /* Gets set to the cwd */ if (g_type_is_a (type, GTK_TYPE_FILE_SELECTION) && strcmp (pspec->name, "filename") == 0)