X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=test%2Fmemory.c;h=2db987178b936aa26138f6614c4c8283559a8f81;hb=c2b7a29219b5d36c629deaca6e1ffdc1db6ecb68;hp=28c3a8ecbd773fb0424741ba12262da78ced67e4;hpb=233ec0f562e12adfbe1ca5182bebd22c19c31ea4;p=platform%2Fupstream%2Fat-spi2-core.git diff --git a/test/memory.c b/test/memory.c index 28c3a8e..2db9871 100644 --- a/test/memory.c +++ b/test/memory.c @@ -13,18 +13,17 @@ basic (AtspiAccessible *obj) gint count; gint i; AtspiAccessible *accessible; - GError *error = NULL; - str = atspi_accessible_get_name (obj, &error); + str = atspi_accessible_get_name (obj, NULL); if (str) g_free (str); accessible = atspi_accessible_get_parent (obj, NULL); if (accessible) g_object_unref (accessible); - count = atspi_accessible_get_child_count (obj, &error); + count = atspi_accessible_get_child_count (obj, NULL); for (i = 0; i < count; i++) { - accessible = atspi_accessible_get_child_at_index (obj, i, &error); + accessible = atspi_accessible_get_child_at_index (obj, i, NULL); if (accessible) g_object_unref (accessible); } @@ -53,18 +52,23 @@ on_event (AtspiEvent *event, void *data) if (strstr (event->type, "add")) { AtspiAccessible *desktop = atspi_get_desktop (0); + guint id; basic (desktop); g_object_unref (desktop); - g_timeout_add (3000, kill_child, NULL); + id = g_timeout_add (3000, kill_child, NULL); + g_source_set_name_by_id (id, "[at-spi2-core] kill_child"); } else { - g_idle_add (end, NULL); + guint id; + id = g_idle_add (end, NULL); + g_source_set_name_by_id (id, "[at-spi2-core] end"); } } g_boxed_free (ATSPI_TYPE_EVENT, event); } +int main() { atspi_init (); @@ -75,4 +79,5 @@ main() if (!child_pid) execlp ("gedit", "gedit", NULL); atspi_event_main (); + return 0; }