diff options
author | Ted Gould <ted@canonical.com> | 2009-04-20 15:39:42 -0500 |
---|---|---|
committer | Ted Gould <ted@canonical.com> | 2009-04-20 15:39:42 -0500 |
commit | 6f87e9c09f9894db7fd6f42f65c8eb147c42a6e8 (patch) | |
tree | b03356ce09b5d5cb1ac5b21b9aadfa1de586fddf /tests/test-thousand-indicators-client.c | |
parent | ecad1e36dce18875461e76d2a47d8a0e11570ff6 (diff) | |
download | libayatana-indicator-6f87e9c09f9894db7fd6f42f65c8eb147c42a6e8.tar.gz libayatana-indicator-6f87e9c09f9894db7fd6f42f65c8eb147c42a6e8.tar.bz2 libayatana-indicator-6f87e9c09f9894db7fd6f42f65c8eb147c42a6e8.zip |
Adding a test to build a bunch of indicators
Diffstat (limited to 'tests/test-thousand-indicators-client.c')
-rw-r--r-- | tests/test-thousand-indicators-client.c | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/tests/test-thousand-indicators-client.c b/tests/test-thousand-indicators-client.c new file mode 100644 index 0000000..0ac7305 --- /dev/null +++ b/tests/test-thousand-indicators-client.c @@ -0,0 +1,34 @@ + +#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; +} |