From cd67aa92a52c4acbb728b2ce49aad33ff53a25a7 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Thu, 22 Sep 2005 03:51:50 +0000 Subject: r10403: fixed the basedn for testing, and add a debug showing the size of the test in ldbtest (This used to be commit 740b9f7537d60c7dbd48fe592587b12b304c52d1) --- source4/lib/ldb/tools/ldbtest.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'source4/lib/ldb') diff --git a/source4/lib/ldb/tools/ldbtest.c b/source4/lib/ldb/tools/ldbtest.c index 68d3ab2484..eeedd49e84 100644 --- a/source4/lib/ldb/tools/ldbtest.c +++ b/source4/lib/ldb/tools/ldbtest.c @@ -383,11 +383,14 @@ static void usage(void) talloc_steal(mem_ctx, options); if (options->basedn == NULL) { - options->basedn = "ou=Ldb Test,ou=People,o=University of Michigan,c=US"; + options->basedn = "ou=Ldb Test,ou=People,o=University of Michigan,c=TEST"; } srandom(1); + printf("Testing with num-records=%d and num-searches=%d\n", + options->num_records, options->num_searches); + start_test(ldb, options->num_records, options->num_searches); start_test_index(&ldb); -- cgit