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-Url: http://git.openbox.org/?a=commitdiff_plain;h=e9e1d9d45f0ef3b704cd82d4b95dd352904599c8;p=dana%2Fcg-glib.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 7f99f021..f2ca49a2 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 82a42fe2..c313aa60 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 */ } }