From 8e824d4d04e2cc231f00e981d98be2fd2a86fdb7 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Mon, 18 Jul 2005 06:26:03 +0000 Subject: r8537: cope better with the small file handle limit on some systems in the build farm (This used to be commit 6202a9d099619a0ba78809647039cbc7622f1d3d) --- source4/torture/raw/search.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source4/torture/raw/search.c') diff --git a/source4/torture/raw/search.c b/source4/torture/raw/search.c index 061e0c96f3..4c57e3e52e 100644 --- a/source4/torture/raw/search.c +++ b/source4/torture/raw/search.c @@ -440,7 +440,7 @@ static NTSTATUS multiple_search(struct smbcli_state *cli, union smb_search_first io; union smb_search_next io2; NTSTATUS status; - const int per_search = 300; + const int per_search = 100; struct multiple_result *result = data; io.generic.level = level; @@ -925,7 +925,7 @@ done: */ static BOOL test_many_dirs(struct smbcli_state *cli, TALLOC_CTX *mem_ctx) { - const int num_dirs = 300; + const int num_dirs = 100; int i, fnum, n; char *fname, *dname; BOOL ret = True; -- cgit