aboutsummaryrefslogtreecommitdiff
path: root/tests/test-interests-server.c
diff options
context:
space:
mode:
authorTed Gould <ted@canonical.com>2009-08-18 11:52:09 -0500
committerTed Gould <ted@canonical.com>2009-08-18 11:52:09 -0500
commitba24704988964a1f211e82e87cbe8aca29641979 (patch)
treef2218fc755cf815cfea4249388301fcd7867297b /tests/test-interests-server.c
parent033de5525d9a2074232e9e0c745a82fd9ad07b4b (diff)
downloadlibayatana-indicator-ba24704988964a1f211e82e87cbe8aca29641979.tar.gz
libayatana-indicator-ba24704988964a1f211e82e87cbe8aca29641979.tar.bz2
libayatana-indicator-ba24704988964a1f211e82e87cbe8aca29641979.zip
Deleting everything only leaving libindicator
Diffstat (limited to 'tests/test-interests-server.c')
-rw-r--r--tests/test-interests-server.c45
1 files changed, 0 insertions, 45 deletions
diff --git a/tests/test-interests-server.c b/tests/test-interests-server.c
deleted file mode 100644
index e1433d8..0000000
--- a/tests/test-interests-server.c
+++ /dev/null
@@ -1,45 +0,0 @@
-
-#include <glib.h>
-#include "libindicate/listener.h"
-
-static gboolean passed = TRUE;
-static GMainLoop * mainloop = NULL;
-
-static void
-server_added (IndicateListener * listener, IndicateListenerServer * server, gchar * type, gpointer data)
-{
- g_debug("Indicator Server Added: %s %s", INDICATE_LISTENER_SERVER_DBUS_NAME(server), type);
-
- gint i;
- for (i = INDICATE_INTEREST_NONE - 2; i < INDICATE_INTEREST_LAST + 2; i++) {
- g_debug("Indicating Interests: %d", i);
- indicate_listener_server_show_interest(listener, server, i);
- }
-
- return;
-}
-
-static gboolean
-failed_cb (gpointer data)
-{
- g_debug("Done indicatating interest");
- g_main_loop_quit(mainloop);
- return FALSE;
-}
-
-int
-main (int argc, char * argv)
-{
- g_type_init();
-
- IndicateListener * listener = indicate_listener_ref_default();
-
- g_signal_connect(listener, INDICATE_LISTENER_SIGNAL_SERVER_ADDED, G_CALLBACK(server_added), NULL);
-
- g_timeout_add_seconds(2, failed_cb, NULL);
-
- mainloop = g_main_loop_new(NULL, FALSE);
- g_main_loop_run(mainloop);
-
- return !passed;
-}