summaryrefslogtreecommitdiff
path: root/script/land-remote.py
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2010-10-01 22:10:13 +0200
committerJelmer Vernooij <jelmer@samba.org>2010-10-02 13:14:53 +0200
commitd03ff1c9daf71fc1a9ddffde63744d809f4705f5 (patch)
tree2d14668dc75732750bc6146fe28fd14ce971241a /script/land-remote.py
parent916904443d6df7f9bd7502f31f1f7734e845a48a (diff)
downloadsamba-d03ff1c9daf71fc1a9ddffde63744d809f4705f5.tar.gz
samba-d03ff1c9daf71fc1a9ddffde63744d809f4705f5.tar.bz2
samba-d03ff1c9daf71fc1a9ddffde63744d809f4705f5.zip
land: Add --fail-slowly option.
Diffstat (limited to 'script/land-remote.py')
-rwxr-xr-xscript/land-remote.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/script/land-remote.py b/script/land-remote.py
index 14f32357f9..cb0d7da853 100755
--- a/script/land-remote.py
+++ b/script/land-remote.py
@@ -19,8 +19,10 @@ parser.add_option("--passcmd", help="command to run on success", default=None)
parser.add_option("--tail", help="show output while running", default=False, action="store_true")
parser.add_option("--keeplogs", help="keep logs", default=False, action="store_true")
parser.add_option("--nocleanup", help="don't remove test tree", default=False, action="store_true")
-parser.add_option("", "--fix-whitespace", help="fix whitespace on rebase",
+parser.add_option("--fix-whitespace", help="fix whitespace on rebase",
default=False, action="store_true")
+parser.add_option("--fail-slowly", help="continue running tests even after one has already failed",
+ action="store_true")
(opts, args) = parser.parse_args()