Changeset 179778 in webkit


Ignore:
Timestamp:
Feb 7, 2015 9:01:37 AM (9 years ago)
Author:
Csaba Osztrogonác
Message:

run-jsc-stress-tests --remote should use the default ssh port
https://bugs.webkit.org/show_bug.cgi?id=141287

Reviewed by Darin Adler.

  • Scripts/run-jsc-stress-tests: Extended URI module to be able to handle ssh scheme with the default 22 port number.
Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r179775 r179778  
     12015-02-07  Csaba Osztrogonác  <ossy@webkit.org>
     2
     3        run-jsc-stress-tests --remote should use the default ssh port
     4        https://bugs.webkit.org/show_bug.cgi?id=141287
     5
     6        Reviewed by Darin Adler.
     7
     8        * Scripts/run-jsc-stress-tests: Extended URI module to be able to handle ssh scheme with the default 22 port number.
     9
    1102015-02-06  Dana Burkart  <dburkart@apple.com>
    211
  • trunk/Tools/Scripts/run-jsc-stress-tests

    r179747 r179778  
    3030require 'uri'
    3131require 'yaml'
     32
     33module URI
     34    class SSH < Generic
     35        DEFAULT_PORT = 22
     36    end
     37    @@schemes['SSH'] = SSH
     38end
    3239
    3340THIS_SCRIPT_PATH = Pathname.new(__FILE__).realpath
     
    192199        $tarball = true
    193200        $remote = true
    194         uri = URI("ftp://" + arg)
     201        uri = URI("ssh://" + arg)
    195202        $remoteUser, $remoteHost, $remotePort = uri.user, uri.host, uri.port
    196203    when '--child-processes'
Note: See TracChangeset for help on using the changeset viewer.