From: Loïc Minier Date: Mon, 9 Jul 2007 07:42:30 +0000 (+0000) Subject: Output newlines after thousand iterations of the inner-loop of the X-Git-Tag: GLIB_2_13_7~25 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e9e1d9d45f0ef3b704cd82d4b95dd352904599c8;p=platform%2Fupstream%2Fglib.git Output newlines after thousand iterations of the inner-loop of the 2007-07-09 Loïc Minier * tests/refcount/closures.c: (main): Output newlines after thousand iterations of the inner-loop of the closures test; this helps having smaller lines and continuously outputting new lines. (#447048). svn path=/trunk/; revision=5609 --- diff --git a/ChangeLog b/ChangeLog index 7f99f02..f2ca49a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2007-07-09 Loïc Minier + + * tests/refcount/closures.c: (main): Output newlines after thousand + iterations of the inner-loop of the closures test; this helps having + smaller lines and continuously outputting new lines. (#447048). + 2007-07-09 Ryan Lortie * glib/gfileutils.c (write_to_temp_file): save errno to prevent it diff --git a/tests/refcount/closures.c b/tests/refcount/closures.c index 82a42fe..c313aa6 100644 --- a/tests/refcount/closures.c +++ b/tests/refcount/closures.c @@ -263,7 +263,7 @@ main (int argc, test_emissions (object); if (++count % 10000 == 0) { - g_printerr ("."); + g_printerr (".\n"); g_thread_yield(); /* force context switch */ } }