2 # run tests on all Samba subprojects and push to a git tree on success
3 # Copyright Andrew Tridgell 2010
4 # released under GNU GPL v3 or later
6 from subprocess
import call
, check_call
,Popen
, PIPE
7 import os
, tarfile
, sys
, time
8 from optparse
import OptionParser
10 from email
.mime
.text
import MIMEText
11 from distutils
.sysconfig
import get_python_lib
13 samba_master
= os
.getenv('SAMBA_MASTER', 'git://git.samba.org/samba.git')
14 samba_master_ssh
= os
.getenv('SAMBA_MASTER_SSH', 'git+ssh://git.samba.org/data/git/samba.git')
16 # This speeds up testing remarkably.
17 os
.environ
['TDB_NO_FSYNC'] = '1'
23 "samba3-ctdb" : "source3",
30 "talloc" : "lib/talloc",
31 "replace" : "lib/replace",
32 "tevent" : "lib/tevent",
39 defaulttasks
= [ "samba3", "samba3-ctdb", "samba", "samba-ctdb", "samba-libs", "ldb", "tdb", "ntdb", "talloc", "replace", "tevent", "pidl" ]
42 "samba3" : [ ("autogen", "./autogen.sh", "text/plain"),
43 ("configure", "./configure.developer ${PREFIX}", "text/plain"),
44 ("make basics", "make basics", "text/plain"),
45 # we split 'make -j 4', 'make bin/smbtorture4' and 'make -j 4 everything'
46 # because it makes it much easier to find errors.
47 ("make", "make -j 4", "text/plain"), # don't use too many processes
48 ("make bin/smbtorture4", "make bin/smbtorture4", "text/plain"),
49 ("make everything", "make -j 4 everything", "text/plain"),
50 ("install", "make install", "text/plain"),
51 ("test", "make test FAIL_IMMEDIATELY=1", "text/plain"),
52 ("check-clean-tree", "../script/clean-source-tree.sh", "text/plain"),
53 ("clean", "make clean", "text/plain") ],
55 "samba3-ctdb" : [ ("random-sleep", "../script/random-sleep.sh 60 600", "text/plain"),
56 ("autogen", "./autogen.sh", "text/plain"),
57 ("configure", "./configure.developer ${PREFIX} --with-cluster-support --with-ctdb=../ctdb", "text/plain"),
58 ("make basics", "make basics", "text/plain"),
59 ("make", "make all", "text/plain"), # don't use too many processes
60 ("check", "LD_LIBRARY_PATH=./bin ./bin/smbd -b | grep CLUSTER_SUPPORT", "text/plain"),
61 ("check-clean-tree", "../script/clean-source-tree.sh", "text/plain"),
62 ("clean", "make clean", "text/plain") ],
64 # We have 'test' before 'install' because, 'test' should work without 'install'
65 "samba" : [ ("configure", "./configure.developer ${PREFIX} --with-selftest-prefix=./bin/ab", "text/plain"),
66 ("make", "make -j", "text/plain"),
67 ("test", "make test FAIL_IMMEDIATELY=1", "text/plain"),
68 ("install", "make install", "text/plain"),
69 ("check-clean-tree", "script/clean-source-tree.sh", "text/plain"),
70 ("clean", "make clean", "text/plain") ],
72 "samba-ctdb" : [ ("random-sleep", "script/random-sleep.sh 60 600", "text/plain"),
74 # make sure we have tdb around:
75 ("tdb-configure", "cd lib/tdb && PYTHONPATH=${PYTHON_PREFIX}/site-packages:$PYTHONPATH PKG_CONFIG_PATH=$PKG_CONFIG_PATH:${PREFIX_DIR}/lib/pkgconfig ./configure --bundled-libraries=NONE --abi-check --enable-debug -C ${PREFIX}", "text/plain"),
76 ("tdb-make", "cd lib/tdb && make", "text/plain"),
77 ("tdb-install", "cd lib/tdb && make install", "text/plain"),
79 # install the ctdb headers under the prefix:
80 ("ctdb-header-install", "cp ./ctdb/include/* ${PREFIX_DIR}/include", "text/plain"),
81 ("ctdb-header-ls", "ls ${PREFIX_DIR}/include/ctdb.h", "text/plain"),
83 ("configure", "PYTHONPATH=${PYTHON_PREFIX}/site-packages:$PYTHONPATH PKG_CONFIG_PATH=$PKG_CONFIG_PATH:${PREFIX_DIR}/lib/pkgconfig ./configure.developer ${PREFIX} --with-selftest-prefix=./bin/ab --with-cluster-support --with-ctdb-dir=${PREFIX_DIR} --bundled-libraries=!tdb", "text/plain"),
84 ("make", "make", "text/plain"),
85 ("check", "./bin/smbd -b | grep CLUSTER_SUPPORT", "text/plain"),
86 ("install", "make install", "text/plain"),
87 ("check-clean-tree", "script/clean-source-tree.sh", "text/plain"),
88 ("clean", "make clean", "text/plain") ],
91 ("random-sleep", "script/random-sleep.sh 60 600", "text/plain"),
92 ("talloc-configure", "cd lib/talloc && PYTHONPATH=${PYTHON_PREFIX}/site-packages:$PYTHONPATH PKG_CONFIG_PATH=$PKG_CONFIG_PATH:${PREFIX_DIR}/lib/pkgconfig ./configure --bundled-libraries=NONE --abi-check --enable-debug -C ${PREFIX}", "text/plain"),
93 ("talloc-make", "cd lib/talloc && make", "text/plain"),
94 ("talloc-install", "cd lib/talloc && make install", "text/plain"),
96 ("tdb-configure", "cd lib/tdb && PYTHONPATH=${PYTHON_PREFIX}/site-packages:$PYTHONPATH PKG_CONFIG_PATH=$PKG_CONFIG_PATH:${PREFIX_DIR}/lib/pkgconfig ./configure --bundled-libraries=NONE --abi-check --enable-debug -C ${PREFIX}", "text/plain"),
97 ("tdb-make", "cd lib/tdb && make", "text/plain"),
98 ("tdb-install", "cd lib/tdb && make install", "text/plain"),
100 ("tevent-configure", "cd lib/tevent && PYTHONPATH=${PYTHON_PREFIX}/site-packages:$PYTHONPATH PKG_CONFIG_PATH=$PKG_CONFIG_PATH:${PREFIX_DIR}/lib/pkgconfig ./configure --bundled-libraries=NONE --abi-check --enable-debug -C ${PREFIX}", "text/plain"),
101 ("tevent-make", "cd lib/tevent && make", "text/plain"),
102 ("tevent-install", "cd lib/tevent && make install", "text/plain"),
104 ("ldb-configure", "cd lib/ldb && PYTHONPATH=${PYTHON_PREFIX}/site-packages:$PYTHONPATH PKG_CONFIG_PATH=$PKG_CONFIG_PATH:${PREFIX_DIR}/lib/pkgconfig ./configure --bundled-libraries=NONE --abi-check --enable-debug -C ${PREFIX}", "text/plain"),
105 ("ldb-make", "cd lib/ldb && make", "text/plain"),
106 ("ldb-install", "cd lib/ldb && make install", "text/plain"),
108 ("configure", "PYTHONPATH=${PYTHON_PREFIX}/site-packages:$PYTHONPATH PKG_CONFIG_PATH=$PKG_CONFIG_PATH:${PREFIX_DIR}/lib/pkgconfig ./configure --bundled-libraries=!talloc,!tdb,!pytdb,!ldb,!pyldb,!tevent,!pytevent --abi-check --enable-debug -C ${PREFIX}", "text/plain"),
109 ("make", "make", "text/plain"),
110 ("install", "make install", "text/plain")],
113 ("random-sleep", "../../script/random-sleep.sh 60 600", "text/plain"),
114 ("configure", "./configure --enable-developer -C ${PREFIX}", "text/plain"),
115 ("make", "make", "text/plain"),
116 ("install", "make install", "text/plain"),
117 ("test", "make test", "text/plain"),
118 ("check-clean-tree", "../../script/clean-source-tree.sh", "text/plain"),
119 ("distcheck", "make distcheck", "text/plain"),
120 ("clean", "make clean", "text/plain") ],
123 ("random-sleep", "../../script/random-sleep.sh 60 600", "text/plain"),
124 ("configure", "./configure --enable-developer -C ${PREFIX}", "text/plain"),
125 ("make", "make", "text/plain"),
126 ("install", "make install", "text/plain"),
127 ("test", "make test", "text/plain"),
128 ("check-clean-tree", "../../script/clean-source-tree.sh", "text/plain"),
129 ("distcheck", "make distcheck", "text/plain"),
130 ("clean", "make clean", "text/plain") ],
133 ("random-sleep", "../../script/random-sleep.sh 60 600", "text/plain"),
134 ("configure", "./configure --enable-developer -C ${PREFIX}", "text/plain"),
135 ("make", "make", "text/plain"),
136 ("install", "make install", "text/plain"),
137 ("test", "make test", "text/plain"),
138 ("check-clean-tree", "../../script/clean-source-tree.sh", "text/plain"),
139 ("distcheck", "make distcheck", "text/plain"),
140 ("clean", "make clean", "text/plain") ],
143 ("random-sleep", "../../script/random-sleep.sh 60 600", "text/plain"),
144 ("configure", "./configure --enable-developer -C ${PREFIX}", "text/plain"),
145 ("make", "make", "text/plain"),
146 ("install", "make install", "text/plain"),
147 ("test", "make test", "text/plain"),
148 ("check-clean-tree", "../../script/clean-source-tree.sh", "text/plain"),
149 ("distcheck", "make distcheck", "text/plain"),
150 ("clean", "make clean", "text/plain") ],
153 ("random-sleep", "../../script/random-sleep.sh 60 600", "text/plain"),
154 ("configure", "./configure --enable-developer -C ${PREFIX}", "text/plain"),
155 ("make", "make", "text/plain"),
156 ("install", "make install", "text/plain"),
157 ("test", "make test", "text/plain"),
158 ("check-clean-tree", "../../script/clean-source-tree.sh", "text/plain"),
159 ("distcheck", "make distcheck", "text/plain"),
160 ("clean", "make clean", "text/plain") ],
163 ("random-sleep", "../../script/random-sleep.sh 60 600", "text/plain"),
164 ("configure", "./configure --enable-developer -C ${PREFIX}", "text/plain"),
165 ("make", "make", "text/plain"),
166 ("install", "make install", "text/plain"),
167 ("test", "make test", "text/plain"),
168 ("check-clean-tree", "../../script/clean-source-tree.sh", "text/plain"),
169 ("distcheck", "make distcheck", "text/plain"),
170 ("clean", "make clean", "text/plain") ],
173 ("random-sleep", "../script/random-sleep.sh 60 600", "text/plain"),
174 ("configure", "perl Makefile.PL PREFIX=${PREFIX_DIR}", "text/plain"),
175 ("touch", "touch *.yp", "text/plain"),
176 ("make", "make", "text/plain"),
177 ("test", "make test", "text/plain"),
178 ("install", "make install", "text/plain"),
179 ("check-clean-tree", "../script/clean-source-tree.sh", "text/plain"),
180 ("clean", "make clean", "text/plain") ],
182 # these are useful for debugging autobuild
183 'pass' : [ ("pass", 'echo passing && /bin/true', "text/plain") ],
184 'fail' : [ ("fail", 'echo failing && /bin/false', "text/plain") ]
187 retry_task
= [ ( "retry",
189 git remote add -t master master %s
193 git describe master/master > old_master.desc
195 git describe master/master > master.desc
196 diff old_master.desc master.desc
198 ''' % samba_master
, "test/plain" ) ]
200 def run_cmd(cmd
, dir=".", show
=None, output
=False, checkfail
=True):
202 show
= options
.verbose
204 print("Running: '%s' in '%s'" % (cmd
, dir))
206 return Popen([cmd
], shell
=True, stdout
=PIPE
, cwd
=dir).communicate()[0]
208 return check_call(cmd
, shell
=True, cwd
=dir)
210 return call(cmd
, shell
=True, cwd
=dir)
213 class builder(object):
214 '''handle build of one directory'''
216 def __init__(self
, name
, sequence
):
218 self
.dir = builddirs
[name
]
220 self
.tag
= self
.name
.replace('/', '_')
221 self
.sequence
= sequence
223 self
.stdout_path
= "%s/%s.stdout" % (gitroot
, self
.tag
)
224 self
.stderr_path
= "%s/%s.stderr" % (gitroot
, self
.tag
)
226 print("stdout for %s in %s" % (self
.name
, self
.stdout_path
))
227 print("stderr for %s in %s" % (self
.name
, self
.stderr_path
))
228 run_cmd("rm -f %s %s" % (self
.stdout_path
, self
.stderr_path
))
229 self
.stdout
= open(self
.stdout_path
, 'w')
230 self
.stderr
= open(self
.stderr_path
, 'w')
231 self
.stdin
= open("/dev/null", 'r')
232 self
.sdir
= "%s/%s" % (testbase
, self
.tag
)
233 self
.prefix
= "%s/prefix/%s" % (testbase
, self
.tag
)
234 run_cmd("rm -rf %s" % self
.sdir
)
235 cleanup_list
.append(self
.sdir
)
236 cleanup_list
.append(self
.prefix
)
237 os
.makedirs(self
.sdir
)
238 run_cmd("rm -rf %s" % self
.sdir
)
239 run_cmd("git clone --shared %s %s" % (test_master
, self
.sdir
), dir=test_master
, show
=True)
242 def start_next(self
):
243 if self
.next
== len(self
.sequence
):
244 print '%s: Completed OK' % self
.name
247 (self
.stage
, self
.cmd
, self
.output_mime_type
) = self
.sequence
[self
.next
]
248 self
.cmd
= self
.cmd
.replace("${PYTHON_PREFIX}", get_python_lib(standard_lib
=1, prefix
=self
.prefix
))
249 self
.cmd
= self
.cmd
.replace("${PREFIX}", "--prefix=%s" % self
.prefix
)
250 self
.cmd
= self
.cmd
.replace("${PREFIX_DIR}", "%s" % self
.prefix
)
251 # if self.output_mime_type == "text/x-subunit":
252 # self.cmd += " | %s --immediate" % (os.path.join(os.path.dirname(__file__), "selftest/format-subunit"))
253 print '%s: [%s] Running %s' % (self
.name
, self
.stage
, self
.cmd
)
255 os
.chdir("%s/%s" % (self
.sdir
, self
.dir))
256 self
.proc
= Popen(self
.cmd
, shell
=True,
257 stdout
=self
.stdout
, stderr
=self
.stderr
, stdin
=self
.stdin
)
262 class buildlist(object):
263 '''handle build of multiple directories'''
265 def __init__(self
, tasklist
, tasknames
):
268 self
.tail_proc
= None
271 tasknames
= defaulttasks
273 b
= builder(n
, tasks
[n
])
276 self
.retry
= builder('retry', retry_task
)
277 self
.need_retry
= False
280 if self
.tail_proc
is not None:
281 self
.tail_proc
.terminate()
282 self
.tail_proc
.wait()
283 self
.tail_proc
= None
284 if self
.retry
is not None:
285 self
.retry
.proc
.terminate()
286 self
.retry
.proc
.wait()
289 if b
.proc
is not None:
290 run_cmd("killbysubdir %s > /dev/null 2>&1" % b
.sdir
, checkfail
=False)
302 b
.status
= b
.proc
.poll()
308 ret
= self
.retry
.proc
.poll()
310 self
.need_retry
= True
320 if options
.retry
and self
.need_retry
:
322 print("retry needed")
323 return (0, None, None, None, "retry")
326 if os
.WIFSIGNALED(b
.status
) or os
.WEXITSTATUS(b
.status
) != 0:
328 return (b
.status
, b
.name
, b
.stage
, b
.tag
, "%s: [%s] failed '%s' with status %d" % (b
.name
, b
.stage
, b
.cmd
, b
.status
))
331 return (0, None, None, None, "All OK")
333 def tarlogs(self
, fname
):
334 tar
= tarfile
.open(fname
, "w:gz")
336 tar
.add(b
.stdout_path
, arcname
="%s.stdout" % b
.tag
)
337 tar
.add(b
.stderr_path
, arcname
="%s.stderr" % b
.tag
)
338 if os
.path
.exists("autobuild.log"):
339 tar
.add("autobuild.log")
342 def remove_logs(self
):
344 os
.unlink(b
.stdout_path
)
345 os
.unlink(b
.stderr_path
)
347 def start_tail(self
):
349 cmd
= "tail -f *.stdout *.stderr"
351 self
.tail_proc
= Popen(cmd
, shell
=True)
356 if options
.nocleanup
:
358 print("Cleaning up ....")
359 for d
in cleanup_list
:
360 run_cmd("rm -rf %s" % d
)
364 '''get to the top of the git repo'''
367 if os
.path
.isdir(os
.path
.join(p
, ".git")):
369 p
= os
.path
.abspath(os
.path
.join(p
, '..'))
373 def daemonize(logfile
):
375 if pid
== 0: # Parent
378 if pid
!= 0: # Actual daemon
383 import resource
# Resource usage information.
384 maxfd
= resource
.getrlimit(resource
.RLIMIT_NOFILE
)[1]
385 if maxfd
== resource
.RLIM_INFINITY
:
386 maxfd
= 1024 # Rough guess at maximum number of open file descriptors.
387 for fd
in range(0, maxfd
):
392 os
.open(logfile
, os
.O_RDWR | os
.O_CREAT
)
396 def write_pidfile(fname
):
397 '''write a pid file, cleanup on exit'''
398 f
= open(fname
, mode
='w')
399 f
.write("%u\n" % os
.getpid())
403 def rebase_tree(url
):
404 print("Rebasing on %s" % url
)
405 run_cmd("git describe HEAD", show
=True, dir=test_master
)
406 run_cmd("git remote add -t master master %s" % url
, show
=True, dir=test_master
)
407 run_cmd("git fetch master", show
=True, dir=test_master
)
408 if options
.fix_whitespace
:
409 run_cmd("git rebase --whitespace=fix master/master", show
=True, dir=test_master
)
411 run_cmd("git rebase master/master", show
=True, dir=test_master
)
412 diff
= run_cmd("git --no-pager diff HEAD master/master", dir=test_master
, output
=True)
414 print("No differences between HEAD and master/master - exiting")
416 run_cmd("git describe master/master", show
=True, dir=test_master
)
417 run_cmd("git describe HEAD", show
=True, dir=test_master
)
418 run_cmd("git --no-pager diff --stat HEAD master/master", show
=True, dir=test_master
)
421 print("Pushing to %s" % url
)
423 run_cmd("git config --replace-all core.editor script/commit_mark.sh", dir=test_master
)
424 run_cmd("git commit --amend -c HEAD", dir=test_master
)
425 # the notes method doesn't work yet, as metze hasn't allowed refs/notes/* in master
426 # run_cmd("EDITOR=script/commit_mark.sh git notes edit HEAD", dir=test_master)
427 run_cmd("git remote add -t master pushto %s" % url
, show
=True, dir=test_master
)
428 run_cmd("git push pushto +HEAD:master", show
=True, dir=test_master
)
430 def_testbase
= os
.getenv("AUTOBUILD_TESTBASE", "/memdisk/%s" % os
.getenv('USER'))
432 parser
= OptionParser()
433 parser
.add_option("", "--tail", help="show output while running", default
=False, action
="store_true")
434 parser
.add_option("", "--keeplogs", help="keep logs", default
=False, action
="store_true")
435 parser
.add_option("", "--nocleanup", help="don't remove test tree", default
=False, action
="store_true")
436 parser
.add_option("", "--testbase", help="base directory to run tests in (default %s)" % def_testbase
,
437 default
=def_testbase
)
438 parser
.add_option("", "--passcmd", help="command to run on success", default
=None)
439 parser
.add_option("", "--verbose", help="show all commands as they are run",
440 default
=False, action
="store_true")
441 parser
.add_option("", "--rebase", help="rebase on the given tree before testing",
442 default
=None, type='str')
443 parser
.add_option("", "--rebase-master", help="rebase on %s before testing" % samba_master
,
444 default
=False, action
='store_true')
445 parser
.add_option("", "--pushto", help="push to a git url on success",
446 default
=None, type='str')
447 parser
.add_option("", "--push-master", help="push to %s on success" % samba_master_ssh
,
448 default
=False, action
='store_true')
449 parser
.add_option("", "--mark", help="add a Tested-By signoff before pushing",
450 default
=False, action
="store_true")
451 parser
.add_option("", "--fix-whitespace", help="fix whitespace on rebase",
452 default
=False, action
="store_true")
453 parser
.add_option("", "--retry", help="automatically retry if master changes",
454 default
=False, action
="store_true")
455 parser
.add_option("", "--email", help="send email to the given address on failure",
456 type='str', default
=None)
457 parser
.add_option("", "--always-email", help="always send email, even on success",
459 parser
.add_option("", "--daemon", help="daemonize after initial setup",
463 def email_failure(status
, failed_task
, failed_stage
, failed_tag
, errstr
):
464 '''send an email to options.email about the failure'''
465 user
= os
.getenv("USER")
469 Your autobuild failed when trying to test %s with the following error:
472 the autobuild has been abandoned. Please fix the error and resubmit.
474 A summary of the autobuild process is here:
476 http://git.samba.org/%s/samba-autobuild/autobuild.log
477 ''' % (failed_task
, errstr
, user
)
479 if failed_task
!= 'rebase':
481 You can see logs of the failed task here:
483 http://git.samba.org/%s/samba-autobuild/%s.stdout
484 http://git.samba.org/%s/samba-autobuild/%s.stderr
486 or you can get full logs of all tasks in this job here:
488 http://git.samba.org/%s/samba-autobuild/logs.tar.gz
490 The top commit for the tree that was built was:
494 ''' % (user
, failed_tag
, user
, failed_tag
, user
, top_commit_msg
)
496 msg
['Subject'] = 'autobuild failure for task %s during %s' % (failed_task
, failed_stage
)
497 msg
['From'] = 'autobuild@samba.org'
498 msg
['To'] = options
.email
502 s
.sendmail(msg
['From'], [msg
['To']], msg
.as_string())
506 '''send an email to options.email about a successful build'''
507 user
= os
.getenv("USER")
511 Your autobuild has succeeded.
518 you can get full logs of all tasks in this job here:
520 http://git.samba.org/%s/samba-autobuild/logs.tar.gz
525 The top commit for the tree that was built was:
531 msg
['Subject'] = 'autobuild success'
532 msg
['From'] = 'autobuild@samba.org'
533 msg
['To'] = options
.email
537 s
.sendmail(msg
['From'], [msg
['To']], msg
.as_string())
541 (options
, args
) = parser
.parse_args()
544 if not options
.rebase_master
and options
.rebase
is None:
545 raise Exception('You can only use --retry if you also rebase')
547 testbase
= "%s/b%u" % (options
.testbase
, os
.getpid())
548 test_master
= "%s/master" % testbase
550 gitroot
= find_git_root()
552 raise Exception("Failed to find git root")
554 # get the top commit message, for emails
555 top_commit_msg
= run_cmd("git log -1", dir=gitroot
, output
=True)
558 os
.makedirs(testbase
)
559 except Exception, reason
:
560 raise Exception("Unable to create %s : %s" % (testbase
, reason
))
561 cleanup_list
.append(testbase
)
564 logfile
= os
.path
.join(testbase
, "log")
565 print "Forking into the background, writing progress to %s" % logfile
568 write_pidfile(gitroot
+ "/autobuild.pid")
572 run_cmd("rm -rf %s" % test_master
)
573 cleanup_list
.append(test_master
)
574 run_cmd("git clone --shared %s %s" % (gitroot
, test_master
), show
=True, dir=gitroot
)
581 if options
.rebase
is not None:
582 rebase_tree(options
.rebase
)
583 elif options
.rebase_master
:
584 rebase_tree(samba_master
)
586 cleanup_list
.append(gitroot
+ "/autobuild.pid")
588 email_failure(-1, 'rebase', 'rebase', 'rebase', 'rebase on master failed')
590 blist
= buildlist(tasks
, args
)
593 (status
, failed_task
, failed_stage
, failed_tag
, errstr
) = blist
.run()
594 if status
!= 0 or errstr
!= "retry":
601 cleanup_list
.append(gitroot
+ "/autobuild.pid")
605 print("waiting for tail to flush")
610 if options
.passcmd
is not None:
611 print("Running passcmd: %s" % options
.passcmd
)
612 run_cmd(options
.passcmd
, dir=test_master
)
613 if options
.pushto
is not None:
614 push_to(options
.pushto
)
615 elif options
.push_master
:
616 push_to(samba_master_ssh
)
618 blist
.tarlogs("logs.tar.gz")
619 print("Logs in logs.tar.gz")
620 if options
.always_email
:
627 # something failed, gather a tar of the logs
628 blist
.tarlogs("logs.tar.gz")
630 if options
.email
is not None:
631 email_failure(status
, failed_task
, failed_stage
, failed_tag
, errstr
)
635 print("Logs in logs.tar.gz")