summaryrefslogtreecommitdiff
path: root/source4/torture/ldap/cldapbench.c
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2007-04-29 21:37:29 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 14:51:47 -0500
commit628ff1bea3e167e2d45dffbffb3c4fffaa3d1916 (patch)
treeb35b49695a07cd8391f334eda49edb11edb80c1d /source4/torture/ldap/cldapbench.c
parent1e84e4026e3c8f0b94cfaf61a089b075f07417f1 (diff)
downloadsamba-628ff1bea3e167e2d45dffbffb3c4fffaa3d1916.tar.gz
samba-628ff1bea3e167e2d45dffbffb3c4fffaa3d1916.tar.bz2
samba-628ff1bea3e167e2d45dffbffb3c4fffaa3d1916.zip
r22579: disable progress printing in the build-farm
metze (This used to be commit 93089ad5e8b6e20c4fa92bf13b0137765aeac689)
Diffstat (limited to 'source4/torture/ldap/cldapbench.c')
-rw-r--r--source4/torture/ldap/cldapbench.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/source4/torture/ldap/cldapbench.c b/source4/torture/ldap/cldapbench.c
index 99ab69cee4..68a23ab119 100644
--- a/source4/torture/ldap/cldapbench.c
+++ b/source4/torture/ldap/cldapbench.c
@@ -76,9 +76,12 @@ static BOOL bench_cldap(TALLOC_CTX *mem_ctx, const char *address)
req->async.fn = request_handler;
num_sent++;
if (num_sent % 50 == 0) {
- printf("%.1f queries per second (%d failures) \r",
- state->pass_count / timeval_elapsed(&tv),
- state->fail_count);
+ if (lp_parm_bool(-1, "torture", "progress", true)) {
+ printf("%.1f queries per second (%d failures) \r",
+ state->pass_count / timeval_elapsed(&tv),
+ state->fail_count);
+ fflush(stdout);
+ }
}
}