diff options
author | Ted Gould <ted@gould.cx> | 2009-12-07 13:09:12 -0600 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2009-12-07 13:09:12 -0600 |
commit | 483992f7d3656a103b1a152a6526507479e8f5b0 (patch) | |
tree | 182195b32060a42c69493c41f666ec4c4c9a4146 /tests/service-version-good-service.c | |
parent | 360ae7addef07b1fc137984e1ada7d1a2a6ba960 (diff) | |
parent | 134704130d3d871c8ff5bda62e2e9501a447375a (diff) | |
download | libayatana-indicator-483992f7d3656a103b1a152a6526507479e8f5b0.tar.gz libayatana-indicator-483992f7d3656a103b1a152a6526507479e8f5b0.tar.bz2 libayatana-indicator-483992f7d3656a103b1a152a6526507479e8f5b0.zip |
Add in support for sevice API versions.
Diffstat (limited to 'tests/service-version-good-service.c')
-rw-r--r-- | tests/service-version-good-service.c | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/tests/service-version-good-service.c b/tests/service-version-good-service.c new file mode 100644 index 0000000..bcfe46d --- /dev/null +++ b/tests/service-version-good-service.c @@ -0,0 +1,47 @@ + +#include <glib.h> +#include "libindicator/indicator-service.h" +#include "service-version-values.h" + +static GMainLoop * mainloop = NULL; +static gboolean passed = FALSE; + +gboolean +timeout (gpointer data) +{ + passed = FALSE; + g_debug("Timeout with no shutdown."); + g_main_loop_quit(mainloop); + return FALSE; +} + +void +shutdown (void) +{ + g_debug("Shutdown"); + passed = TRUE; + g_main_loop_quit(mainloop); + return; +} + +int +main (int argc, char ** argv) +{ + g_type_init(); + + IndicatorService * is = indicator_service_new_version("org.ayatana.version.good", SERVICE_VERSION_GOOD); + g_signal_connect(G_OBJECT(is), INDICATOR_SERVICE_SIGNAL_SHUTDOWN, shutdown, NULL); + + g_timeout_add_seconds(1, timeout, NULL); + + mainloop = g_main_loop_new(NULL, FALSE); + g_main_loop_run(mainloop); + + g_debug("Quiting"); + if (passed) { + g_debug("Passed"); + return 0; + } + g_debug("Failed"); + return 1; +} |