[test-suite] r267627 - lit/remote: Fix typo in ssh invocation

Matthias Braun via llvm-commits llvm-commits at lists.llvm.org
Tue Apr 26 16:29:20 PDT 2016


Author: matze
Date: Tue Apr 26 18:29:20 2016
New Revision: 267627

URL: http://llvm.org/viewvc/llvm-project?rev=267627&view=rev
Log:
lit/remote: Fix typo in ssh invocation

Modified:
    test-suite/trunk/litsupport/remote.py

Modified: test-suite/trunk/litsupport/remote.py
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/litsupport/remote.py?rev=267627&r1=267626&r2=267627&view=diff
==============================================================================
--- test-suite/trunk/litsupport/remote.py (original)
+++ test-suite/trunk/litsupport/remote.py Tue Apr 26 18:29:20 2016
@@ -14,7 +14,7 @@ def mutateCommandline(context, commandli
     if config.remote_user:
         remote_commandline += " -l %s" % config.remote_user
     if config.remote_port:
-        remote_commandline += " -rp %s" % config.remote_port
+        remote_commandline += " -p %s" % config.remote_port
     if config.remote_flags:
         remote_commandline += config.remote_flags
     remote_commandline += " %s" % config.remote_host




More information about the llvm-commits mailing list