From 628ff1bea3e167e2d45dffbffb3c4fffaa3d1916 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Sun, 29 Apr 2007 21:37:29 +0000 Subject: r22579: disable progress printing in the build-farm metze (This used to be commit 93089ad5e8b6e20c4fa92bf13b0137765aeac689) --- source4/torture/local/iconv.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'source4/torture/local') diff --git a/source4/torture/local/iconv.c b/source4/torture/local/iconv.c index f21bacf4bb..4c96d075c0 100644 --- a/source4/torture/local/iconv.c +++ b/source4/torture/local/iconv.c @@ -315,6 +315,7 @@ static bool test_first_1m(struct torture_context *tctx) if (codepoint % 1000 == 0) { if (torture_setting_bool(tctx, "progress", True)) { torture_comment(tctx, "codepoint=%u \r", codepoint); + fflush(stdout); } } @@ -335,6 +336,7 @@ static bool test_random_5m(struct torture_context *tctx) if (i % 1000 == 0) { if (torture_setting_bool(tctx, "progress", true)) { torture_comment(tctx, "i=%u \r", i); + fflush(stdout); } } -- cgit