diff options
author | Volker Lendecke <vlendec@samba.org> | 2005-06-07 15:59:14 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 10:57:06 -0500 |
commit | 5c286aab366ce2e789dbb2a08fe2218d79d8d88b (patch) | |
tree | 975060708729ba608df2cc6d2d24770aef834266 | |
parent | b6fb04624910964111a1ad90dbe1ebae7981ba6f (diff) | |
download | samba-5c286aab366ce2e789dbb2a08fe2218d79d8d88b.tar.gz samba-5c286aab366ce2e789dbb2a08fe2218d79d8d88b.tar.bz2 samba-5c286aab366ce2e789dbb2a08fe2218d79d8d88b.zip |
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)
-rw-r--r-- | source3/torture/torture.c | 4 |
1 files changed, 4 insertions, 0 deletions
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"); |