summaryrefslogtreecommitdiff
path: root/lib/torture
diff options
context:
space:
mode:
authorChristian Ambach <christian.ambach@de.ibm.com>2011-02-18 15:02:35 +0100
committerMatthias Dieter Wallnöfer <mdw@samba.org>2011-02-21 11:35:30 +0100
commit2ba57fd1832a4bc3c4c652c08e5f62054ecab79b (patch)
tree73343bb11399902a4a11ad5bb7865b3f84e1e33e /lib/torture
parentd2b336ae319053dee96476131a3dc0c45b306b5f (diff)
downloadsamba-2ba57fd1832a4bc3c4c652c08e5f62054ecab79b.tar.gz
s4:smbtorture do not leave output directory around
calling smbtorture with no or invalid arguments left the temporary output directory around this patches removes the dead-end exit from usage and makes the logic go on until the final cleanup state is reached output directory will still be left around when test times out or testcases itself force an exit also make sure that the directory itself is deleted, not just the objects in it Signed-off-by: Matthias Dieter Wallnöfer <mdw@samba.org> Signed-off-by: Andrew Bartlett <abartlet@samba.org> Autobuild-User: Matthias Dieter Wallnöfer <mdw@samba.org> Autobuild-Date: Mon Feb 21 11:35:30 CET 2011 on sn-devel-104
Diffstat (limited to 'lib/torture')
-rw-r--r--lib/torture/torture.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/torture/torture.c b/lib/torture/torture.c
index a12ce657ba2..a0b35bfe7ca 100644
--- a/lib/torture/torture.c
+++ b/lib/torture/torture.c
@@ -138,6 +138,7 @@ static int local_deltree(const char *path)
}
}
closedir(dir);
+ rmdir(path);
return ret;
}