diff options
author | Ted Gould <ted@gould.cx> | 2009-12-03 16:03:17 -0600 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2009-12-03 16:03:17 -0600 |
commit | 873b502fb3f519492a7ec0a1e2dea434d866f3d8 (patch) | |
tree | 8efe6297eea53e98aa81fd97436e28deea3c726a /tests/service-version-bad-service.c | |
parent | 360ae7addef07b1fc137984e1ada7d1a2a6ba960 (diff) | |
parent | ea29a8effb3c9ebcb7d2f469add8eaff462d29c5 (diff) | |
download | libayatana-indicator-873b502fb3f519492a7ec0a1e2dea434d866f3d8.tar.gz libayatana-indicator-873b502fb3f519492a7ec0a1e2dea434d866f3d8.tar.bz2 libayatana-indicator-873b502fb3f519492a7ec0a1e2dea434d866f3d8.zip |
Service version numbers.
Diffstat (limited to 'tests/service-version-bad-service.c')
-rw-r--r-- | tests/service-version-bad-service.c | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/tests/service-version-bad-service.c b/tests/service-version-bad-service.c new file mode 100644 index 0000000..6057e74 --- /dev/null +++ b/tests/service-version-bad-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.bad", SERVICE_VERSION_BAD); + 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; +} |