summaryrefslogtreecommitdiff
path: root/script/land-remote.py
diff options
context:
space:
mode:
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()