From d03ff1c9daf71fc1a9ddffde63744d809f4705f5 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Fri, 1 Oct 2010 22:10:13 +0200 Subject: land: Add --fail-slowly option. --- script/land-remote.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'script/land-remote.py') 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() -- cgit