diff options
author | Andrew Tridgell <tridge@samba.org> | 2010-10-01 11:17:04 -0700 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-10-01 18:22:22 +0000 |
commit | afe78c23ad4868b1c67a3aa855ad7f59d8475412 (patch) | |
tree | 681d68e78221b6854643d388d7b7e3d003dc4c03 /script | |
parent | 2d66bb51caf02c979f53688257dd33d7366b3ebc (diff) | |
download | samba-afe78c23ad4868b1c67a3aa855ad7f59d8475412.tar.gz samba-afe78c23ad4868b1c67a3aa855ad7f59d8475412.tar.bz2 samba-afe78c23ad4868b1c67a3aa855ad7f59d8475412.zip |
autobuild: fixed the tuples in the retry_task
Pair-Programmed-With: Jelmer Vernooij <jelmer@samba.org>
Autobuild-User: Andrew Tridgell <tridge@samba.org>
Autobuild-Date: Fri Oct 1 18:22:22 UTC 2010 on sn-devel-104
Diffstat (limited to 'script')
-rwxr-xr-x | script/autobuild.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/script/autobuild.py b/script/autobuild.py index 4e3bc5101f..a2d2a2c31a 100755 --- a/script/autobuild.py +++ b/script/autobuild.py @@ -58,7 +58,8 @@ tasks = { ("test", "make test", "text/plain"), ], } -retry_task = [ '''set -e +retry_task = [ ( "retry", + '''set -e git remote add -t master master %s git fetch master while :; do @@ -68,7 +69,7 @@ retry_task = [ '''set -e git describe master/master > master.desc diff old_master.desc master.desc done - ''' % samba_master] + ''' % samba_master, "test/plain" ) ] def run_cmd(cmd, dir=".", show=None, output=False, checkfail=True): if show is None: |