diff options
author | Sebastien Bacher <seb128@ubuntu.com> | 2012-02-23 12:10:29 +0100 |
---|---|---|
committer | Sebastien Bacher <seb128@ubuntu.com> | 2012-02-23 12:10:29 +0100 |
commit | ca576cbf1273ca628b97ae2e08e14c0dd525373b (patch) | |
tree | 484fc05718663af7eb49ef43faa75577a2afa79d /tests | |
parent | 5d1c17d52b13108c88038483812ebc6a438ce49a (diff) | |
parent | 66c91f88c9f7473025c0c5f9e83c582e79ff2dcc (diff) | |
download | libdbusmenu-ca576cbf1273ca628b97ae2e08e14c0dd525373b.tar.gz libdbusmenu-ca576cbf1273ca628b97ae2e08e14c0dd525373b.tar.bz2 libdbusmenu-ca576cbf1273ca628b97ae2e08e14c0dd525373b.zip |
releasing version 0.5.92-0ubuntu1
Diffstat (limited to 'tests')
-rw-r--r-- | tests/Makefile.am | 4 | ||||
-rw-r--r-- | tests/Makefile.in | 4 | ||||
-rw-r--r-- | tests/test-gtk-submenu-server.c | 1 |
3 files changed, 7 insertions, 2 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am index db2d469..6824c1c 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -25,8 +25,10 @@ TESTS += \ test-gtk-label \ test-gtk-shortcut \ test-gtk-reorder \ - test-gtk-submenu \ test-gtk-parser-test +# Not working with GTK3 and a critical grab that is in +# the GTK3 code. +# test-gtk-submenu endif # The Python test only work on the system copy of diff --git a/tests/Makefile.in b/tests/Makefile.in index bd0e43f..91c60fd 100644 --- a/tests/Makefile.in +++ b/tests/Makefile.in @@ -48,7 +48,6 @@ TESTS = test-glib-objects-test test-glib-events test-glib-layout \ @WANT_LIBDBUSMENUGTK_TRUE@ test-gtk-label \ @WANT_LIBDBUSMENUGTK_TRUE@ test-gtk-shortcut \ @WANT_LIBDBUSMENUGTK_TRUE@ test-gtk-reorder \ -@WANT_LIBDBUSMENUGTK_TRUE@ test-gtk-submenu \ @WANT_LIBDBUSMENUGTK_TRUE@ test-gtk-parser-test check_PROGRAMS = glib-server-nomenu$(EXEEXT) \ @@ -689,6 +688,9 @@ EXTRA_DIST = test-glib-simple-items.py test-gtk-shortcut-client.py \ dbusmenu-gtk/mago_tests/data/static.json \ dbusmenu-gtk/mago_tests/data/test-gtk-label.json \ test-json-01.json +# Not working with GTK3 and a critical grab that is in +# the GTK3 code. +# test-gtk-submenu # The Python test only work on the system copy of # dbusmenu, so while they can be usefule they're not diff --git a/tests/test-gtk-submenu-server.c b/tests/test-gtk-submenu-server.c index 9c4d7d4..1d38a44 100644 --- a/tests/test-gtk-submenu-server.c +++ b/tests/test-gtk-submenu-server.c @@ -64,6 +64,7 @@ on_bus (GDBusConnection * connection, const gchar * name, gpointer user_data) DbusmenuMenuitem * item; item = add_item(root, "Folder 1"); + dbusmenu_menuitem_property_set(item, "disposition", "alert"); add_item(item, "1.1"); add_item(item, "1.2"); add_item(item, "1.3"); |