summaryrefslogtreecommitdiff
path: root/test/fops
diff options
context:
space:
mode:
authorKeith Bostic <keith@wiredtiger.com>2012-09-20 11:50:42 +0000
committerKeith Bostic <keith@wiredtiger.com>2012-09-20 11:50:42 +0000
commitd60a2c96be58815ce4950819a3704dbd1246a4a8 (patch)
treee50f6128c73b0c5ab21ef5cdbb23a8ab6e2494d3 /test/fops
parent3b7133c3ef3d65e500cb01a6c7d356bdcbc0a7ab (diff)
downloadmongo-d60a2c96be58815ce4950819a3704dbd1246a4a8.tar.gz
Output bulk operation count
Diffstat (limited to 'test/fops')
-rw-r--r--test/fops/fops.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/test/fops/fops.c b/test/fops/fops.c
index 249053b4ee1..26be4d837e8 100644
--- a/test/fops/fops.c
+++ b/test/fops/fops.c
@@ -154,7 +154,8 @@ print_stats(u_int nthreads)
s = run_stats;
for (id = 0; id < nthreads; ++id, ++s)
printf(
- "%3d: create %6d, drop %6d, ckpt %6d, upgrade %6d, "
- "verify %6d\n",
- id, s->create, s->drop, s->ckpt, s->upgrade, s->verify);
+ "%2d: bulk %4d, create %4d, drop %4d, ckpt %4d, "
+ "upgrade %4d, verify %4d\n",
+ id, s->bulk,
+ s->create, s->drop, s->ckpt, s->upgrade, s->verify);
}