From d0feaf0c0314c0f867a2f8e94b7b1774634d29d5 Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Sun, 18 Feb 2007 02:12:50 +0000 Subject: r21418: Return the ratio as well (This used to be commit 56ed4499d69adf57a41632ba12cbfef383a35ab2) --- source4/torture/local/dbspeed.c | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'source4/torture/local') diff --git a/source4/torture/local/dbspeed.c b/source4/torture/local/dbspeed.c index ba2517e24d..08012fc5e9 100644 --- a/source4/torture/local/dbspeed.c +++ b/source4/torture/local/dbspeed.c @@ -28,6 +28,7 @@ #include "lib/db_wrap.h" #include "torture/torture.h" +float tdb_speed; static BOOL tdb_add_record(struct tdb_wrap *tdbw, const char *fmt1, const char *fmt2, int i) { @@ -110,7 +111,8 @@ static BOOL test_tdb_speed(struct torture_context *torture, const void *_data) free(data.dptr); } - torture_comment(torture, "tdb speed %.2f ops/sec\n", count/timeval_elapsed(&tv)); + tdb_speed = count/timeval_elapsed(&tv); + torture_comment(torture, "tdb speed %.2f ops/sec\n", tdb_speed); unlink("test.tdb"); @@ -164,6 +166,7 @@ static BOOL test_ldb_speed(struct torture_context *torture, const void *_data) struct ldb_ldif *ldif; const char *init_ldif = "dn: @INDEXLIST\n" \ "@IDXATTR: UID\n"; + float ldb_speed; unlink("./test.ldb"); @@ -227,7 +230,10 @@ static BOOL test_ldb_speed(struct torture_context *torture, const void *_data) torture_fail(torture, "memory leak in ldb search"); } - torture_comment(torture, "ldb speed %.2f ops/sec\n", count/timeval_elapsed(&tv)); + ldb_speed = count/timeval_elapsed(&tv); + torture_comment(torture, "ldb speed %.2f ops/sec\n", ldb_speed); + + torture_comment(torture, "ldb/tdb speed ratio is %.2f%%\n", (100*ldb_speed/tdb_speed)); unlink("./test.ldb"); -- cgit