Changeset 239836 in webkit


Ignore:
Timestamp:
Jan 10, 2019 11:36:25 AM (5 years ago)
Author:
commit-queue@webkit.org
Message:

Disable the run-jsc-stress-test remote host key check.
https://bugs.webkit.org/show_bug.cgi?id=192988

Patch by Zhifei Fang <zhifei_fang@apple.com> on 2019-01-10
Reviewed by Alexey Proskuryakov.

  • Scripts/run-jsc-stress-tests:
Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r239832 r239836  
     12019-01-10  Zhifei Fang  <zhifei_fang@apple.com>
     2
     3        Disable the run-jsc-stress-test remote host key check.
     4        https://bugs.webkit.org/show_bug.cgi?id=192988
     5
     6        Reviewed by Alexey Proskuryakov.
     7
     8        * Scripts/run-jsc-stress-tests:
     9
    1102019-01-10  John Wilander  <wilander@apple.com>
    211
  • trunk/Tools/Scripts/run-jsc-stress-tests

    r239825 r239836  
    17921792
    17931793    result = ""
    1794     IO.popen("ssh -p #{remoteHost.port} #{remoteHost.user}@#{remoteHost.host} '#{cmd}'", "r") {
     1794    IO.popen("ssh -o NoHostAuthenticationForLocalhost=yes -p #{remoteHost.port} #{remoteHost.user}@#{remoteHost.host} '#{cmd}'", "r") {
    17951795      | inp |
    17961796      inp.each_line {
     
    19091909            remoteHost.remoteDirectory = JSON::parse(sshRead("cat ~/.bencher", remoteIndex))["tempPath"]
    19101910        end
    1911         mysys("ssh", "-p", remoteHost.port.to_s, "#{remoteHost.user}@#{remoteHost.host}", "mkdir -p #{remoteHost.remoteDirectory}")
    1912         mysys("scp", "-P", remoteHost.port.to_s, ($outputDir.dirname + $tarFileName).to_s, "#{remoteHost.user}@#{remoteHost.host}:#{remoteHost.remoteDirectory}")
     1911        mysys("ssh", "-o", "NoHostAuthenticationForLocalhost=yes", "-p", remoteHost.port.to_s, "#{remoteHost.user}@#{remoteHost.host}", "mkdir -p #{remoteHost.remoteDirectory}")
     1912        mysys("scp", "-o", "NoHostAuthenticationForLocalhost=yes", "-P", remoteHost.port.to_s, ($outputDir.dirname + $tarFileName).to_s, "#{remoteHost.user}@#{remoteHost.host}:#{remoteHost.remoteDirectory}")
    19131913        remoteScript = "\""
    19141914        remoteScript += "cd #{remoteHost.remoteDirectory} && "
Note: See TracChangeset for help on using the changeset viewer.