diff options
author | Ted Gould <ted@canonical.com> | 2009-08-18 11:52:09 -0500 |
---|---|---|
committer | Ted Gould <ted@canonical.com> | 2009-08-18 11:52:09 -0500 |
commit | ba24704988964a1f211e82e87cbe8aca29641979 (patch) | |
tree | f2218fc755cf815cfea4249388301fcd7867297b /tests/test-thousand-indicators-client.c | |
parent | 033de5525d9a2074232e9e0c745a82fd9ad07b4b (diff) | |
download | libayatana-indicator-ba24704988964a1f211e82e87cbe8aca29641979.tar.gz libayatana-indicator-ba24704988964a1f211e82e87cbe8aca29641979.tar.bz2 libayatana-indicator-ba24704988964a1f211e82e87cbe8aca29641979.zip |
Deleting everything only leaving libindicator
Diffstat (limited to 'tests/test-thousand-indicators-client.c')
-rw-r--r-- | tests/test-thousand-indicators-client.c | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/tests/test-thousand-indicators-client.c b/tests/test-thousand-indicators-client.c deleted file mode 100644 index 0ac7305..0000000 --- a/tests/test-thousand-indicators-client.c +++ /dev/null @@ -1,34 +0,0 @@ - -#include <glib.h> -#include "libindicate/indicator.h" - -static gboolean passed = TRUE; -static GMainLoop * mainloop = NULL; - -static gboolean -done_timeout_cb (gpointer data) -{ - g_debug("All done."); - g_main_loop_quit(mainloop); - return FALSE; -} - -int -main (int argc, char * argv) -{ - g_type_init(); - - int i; - for (i = 0; i < 1000; i++) { - /* Memory leak :) */ - IndicateIndicator * indicator = indicate_indicator_new(); - indicate_indicator_show(indicator); - } - - g_timeout_add_seconds(2, done_timeout_cb, NULL); - - mainloop = g_main_loop_new(NULL, FALSE); - g_main_loop_run(mainloop); - - return !passed; -} |