diff options
author | Ted Gould <ted@gould.cx> | 2013-09-09 15:26:42 -0500 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2013-09-09 15:26:42 -0500 |
commit | b20d7e1fc716b3be097740efbddb3976336a060d (patch) | |
tree | 963cb2696238e6977d97f3df57639186c652654d /tests | |
parent | e7ed232f654cbb438febd4ce978326ffdef98b0d (diff) | |
download | libdbusmenu-b20d7e1fc716b3be097740efbddb3976336a060d.tar.gz libdbusmenu-b20d7e1fc716b3be097740efbddb3976336a060d.tar.bz2 libdbusmenu-b20d7e1fc716b3be097740efbddb3976336a060d.zip |
A few more
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test-glib-properties-client.c | 6 | ||||
-rw-r--r-- | tests/test-glib-proxy-server.c | 2 | ||||
-rw-r--r-- | tests/test-gtk-shortcut-client.c | 2 |
3 files changed, 6 insertions, 4 deletions
diff --git a/tests/test-glib-properties-client.c b/tests/test-glib-properties-client.c index 3d6aa9d..f77eab6 100644 --- a/tests/test-glib-properties-client.c +++ b/tests/test-glib-properties-client.c @@ -26,6 +26,8 @@ with this program. If not, see <http://www.gnu.org/licenses/>. #include "test-glib-properties.h" +#define DEATH_TIME 60 + static guint layouton = 0; static GMainLoop * mainloop = NULL; static gboolean passed = TRUE; @@ -137,7 +139,7 @@ layout_verify_timer (gpointer data) } else { /* Extend our death */ g_source_remove(death_timer); - death_timer = g_timeout_add_seconds(10, timer_func, data); + death_timer = g_timeout_add_seconds(DEATH_TIME, timer_func, data); } layouton++; @@ -158,7 +160,7 @@ main (int argc, char ** argv) DbusmenuClient * client = dbusmenu_client_new(":1.0", "/org/test"); g_signal_connect(G_OBJECT(client), DBUSMENU_CLIENT_SIGNAL_LAYOUT_UPDATED, G_CALLBACK(layout_updated), NULL); - death_timer = g_timeout_add_seconds(10, timer_func, client); + death_timer = g_timeout_add_seconds(DEATH_TIME, timer_func, client); mainloop = g_main_loop_new(NULL, FALSE); g_main_loop_run(mainloop); diff --git a/tests/test-glib-proxy-server.c b/tests/test-glib-proxy-server.c index 70ffd08..ccb4cb8 100644 --- a/tests/test-glib-proxy-server.c +++ b/tests/test-glib-proxy-server.c @@ -95,7 +95,7 @@ layout_change (DbusmenuMenuitem * oldroot, guint timestamp, gpointer data) if (death_timer != 0) { g_source_remove(death_timer); } - death_timer = g_timeout_add_seconds(10, timer_func, data); + death_timer = g_timeout_add_seconds(60, timer_func, data); return; } diff --git a/tests/test-gtk-shortcut-client.c b/tests/test-gtk-shortcut-client.c index 259e177..7147ce2 100644 --- a/tests/test-gtk-shortcut-client.c +++ b/tests/test-gtk-shortcut-client.c @@ -60,7 +60,7 @@ main (int argc, char ** argv) gtk_window_add_accel_group(GTK_WINDOW(window), agroup); gtk_widget_show(window); - death_timer = g_timeout_add_seconds(10, timer_func, window); + death_timer = g_timeout_add_seconds(60, timer_func, window); g_debug("Entering Mainloop"); mainloop = g_main_loop_new(NULL, FALSE); |