aboutsummaryrefslogtreecommitdiff
path: root/tests/service-version-good-service.c
diff options
context:
space:
mode:
authorTed Gould <ted@gould.cx>2009-12-03 16:03:17 -0600
committerTed Gould <ted@gould.cx>2009-12-03 16:03:17 -0600
commit873b502fb3f519492a7ec0a1e2dea434d866f3d8 (patch)
tree8efe6297eea53e98aa81fd97436e28deea3c726a /tests/service-version-good-service.c
parent360ae7addef07b1fc137984e1ada7d1a2a6ba960 (diff)
parentea29a8effb3c9ebcb7d2f469add8eaff462d29c5 (diff)
downloadlibayatana-indicator-873b502fb3f519492a7ec0a1e2dea434d866f3d8.tar.gz
libayatana-indicator-873b502fb3f519492a7ec0a1e2dea434d866f3d8.tar.bz2
libayatana-indicator-873b502fb3f519492a7ec0a1e2dea434d866f3d8.zip
Service version numbers.
Diffstat (limited to 'tests/service-version-good-service.c')
-rw-r--r--tests/service-version-good-service.c47
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;
+}