From 5c286aab366ce2e789dbb2a08fe2218d79d8d88b Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Tue, 7 Jun 2005 15:59:14 +0000 Subject: r7371: On one build farm box dirtest1 does not return, I think this might be due to it being too slow. The build farm re-runs that with debuglevel 10, and this ends up with a 400MB logfile which is not synced. Lets see if with this change the machine pops up on build.samba.org.... Volker (This used to be commit b4a6ace00dbf1a6b6200704197df7ecd460412e9) --- source3/torture/torture.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'source3') diff --git a/source3/torture/torture.c b/source3/torture/torture.c index ef9497d9ad..199fe74b73 100644 --- a/source3/torture/torture.c +++ b/source3/torture/torture.c @@ -4481,6 +4481,10 @@ static BOOL run_dirtest1(int dummy) cli_sockopt(cli, sockops); + /* This is for a particular *slow* machine, lets see whether this then + * shows up in the build farm. */ + cli->timeout *= 10; + cli_list(cli, "\\LISTDIR\\*", 0, del_fn, cli); cli_list(cli, "\\LISTDIR\\*", aDIR, del_fn, cli); cli_rmdir(cli, "\\LISTDIR"); -- cgit