Changeset 240191 in webkit


Ignore:
Timestamp:
Jan 18, 2019 5:06:47 PM (5 years ago)
Author:
commit-queue@webkit.org
Message:

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

Patch by Zhifei FANG <zhifei_fang@apple.com> on 2019-01-18
Reviewed by Dewei Zhu.

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

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r240189 r240191  
     12019-01-18  Zhifei FANG  <zhifei_fang@apple.com>
     2
     3        Disable the run-jsc-stress-test remote host key check [second round].
     4        https://bugs.webkit.org/show_bug.cgi?id=192988
     5
     6        Reviewed by Dewei Zhu.
     7
     8        * Scripts/run-jsc-stress-tests:
     9
    1102019-01-18  Aakash Jain  <aakash_jain@apple.com>
    211
  • trunk/Tools/Scripts/run-jsc-stress-tests

    r239867 r240191  
    19211921        $envVars.each { |var| remoteScript += "export " << var << "\n" }
    19221922        remoteScript += "#{testRunnerCommand(remoteIndex)}\""
    1923         runAndMonitorTestRunnerCommand("ssh", "-p", remoteHost.port.to_s, "#{remoteHost.user}@#{remoteHost.host}", remoteScript)
     1923        runAndMonitorTestRunnerCommand("ssh", "-o", "NoHostAuthenticationForLocalhost=yes", "-p", remoteHost.port.to_s, "#{remoteHost.user}@#{remoteHost.host}", remoteScript)
    19241924    else
    19251925        Dir.chdir($runnerDir) {
Note: See TracChangeset for help on using the changeset viewer.