From c4d6a49779e0e2bff86256b8b353e6c803e31ba9 Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Wed, 24 Apr 2002 11:24:58 +0000 Subject: [PATCH] add collision/total indication to every collision report --- source/torture/mangle_test.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/source/torture/mangle_test.c b/source/torture/mangle_test.c index 2d5b3610d55..ced0185c951 100644 --- a/source/torture/mangle_test.c +++ b/source/torture/mangle_test.c @@ -88,8 +88,9 @@ static BOOL test_one(struct cli_state *cli, const char *name) if (strcasecmp(name, data.dptr) != 0) { /* we have a collision */ collisions++; - printf("Collision between %s and %s -> %s\n", - name, data.dptr, shortname); + printf("Collision between %s and %s -> %s " + " (coll/tot: %u/%u)\n", + name, data.dptr, shortname, collisions, total); } free(data.dptr); } else { -- 2.11.4.GIT