summaryrefslogtreecommitdiff
path: root/source4/torture/raw/search.c
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2005-07-18 06:26:03 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:29:36 -0500
commit8e824d4d04e2cc231f00e981d98be2fd2a86fdb7 (patch)
tree246e40394373eb5ddb5b081cf61539bb182b80b2 /source4/torture/raw/search.c
parenta6c9065457813cf81a7d50022530ed197f730452 (diff)
downloadsamba-8e824d4d04e2cc231f00e981d98be2fd2a86fdb7.tar.gz
samba-8e824d4d04e2cc231f00e981d98be2fd2a86fdb7.tar.bz2
samba-8e824d4d04e2cc231f00e981d98be2fd2a86fdb7.zip
r8537: cope better with the small file handle limit on some systems in the build farm
(This used to be commit 6202a9d099619a0ba78809647039cbc7622f1d3d)
Diffstat (limited to 'source4/torture/raw/search.c')
-rw-r--r--source4/torture/raw/search.c4
1 files changed, 2 insertions, 2 deletions
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;