From: <dg...@su...> - 2009-01-07 12:50:14
|
Author: bellmich Date: Wed Jan 7 13:49:49 2009 New Revision: 888 URL: http://libsyncml.opensync.org/changeset/888 Log: added G_DEBUG=gc-friendly according to the recommendation in the glib documentation Modified: trunk/tests/support.c Modified: trunk/tests/support.c ============================================================================== --- trunk/tests/support.c Wed Jan 7 13:45:28 2009 (r887) +++ trunk/tests/support.c Wed Jan 7 13:49:49 2009 (r888) @@ -39,6 +39,8 @@ */ if (!g_setenv("G_SLICE", "always-malloc", FALSE)) g_warning("G_SLICE is already set."); + if (!g_setenv("G_DEBUG", "gc-friendly", FALSE)) + g_warning("G_DEBUG is already set."); /* The check library usually forks test suites to safely survive * things like segmentation faults and to have a clean separated |