summaryrefslogtreecommitdiff
path: root/script
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2016-12-16 13:30:57 +0100
committerJeremy Allison <jra@samba.org>2016-12-17 19:16:14 +0100
commit6f0ffd767ce610b28884c76f52f7f80652fd413d (patch)
tree19cb49d4d995d94fd1d0d3af5a01956479ae01e2 /script
parente717ca65cfb3d8fee28f3ccc1e96d765f637642d (diff)
downloadsamba-6f0ffd767ce610b28884c76f52f7f80652fd413d.tar.gz
script/autobuild.py: don't add subdirs of testbase to cleanup_list
We already have testbase in there. Signed-off-by: Stefan Metzmacher <metze@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'script')
-rwxr-xr-xscript/autobuild.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/script/autobuild.py b/script/autobuild.py
index 356b7fa108d..8ed67428669 100755
--- a/script/autobuild.py
+++ b/script/autobuild.py
@@ -278,8 +278,6 @@ class builder(object):
self.sdir = "%s/%s" % (testbase, self.tag)
self.prefix = "%s/prefix/%s" % (testbase, self.tag)
run_cmd("rm -rf %s" % self.sdir)
- cleanup_list.append(self.sdir)
- cleanup_list.append(self.prefix)
os.makedirs(self.sdir)
run_cmd("rm -rf %s" % self.sdir)
if cp:
@@ -734,7 +732,6 @@ start_time = time.time()
while True:
try:
run_cmd("rm -rf %s" % test_master)
- cleanup_list.append(test_master)
run_cmd("git clone --recursive --shared %s %s" % (gitroot, test_master), show=True, dir=gitroot)
except Exception:
cleanup()