WebKit Bugzilla
Attachment 357968 Details for
Bug 192988
: Disable the run-jsc-stress-test remote host key check
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
Patch
bug-192988-20181221125428.patch (text/plain), 2.25 KB, created by
Zhifei Fang
on 2018-12-21 12:54:29 PST
(
hide
)
Description:
Patch
Filename:
MIME Type:
Creator:
Zhifei Fang
Created:
2018-12-21 12:54:29 PST
Size:
2.25 KB
patch
obsolete
>Subversion Revision: 239509 >diff --git a/Tools/ChangeLog b/Tools/ChangeLog >index 1fb10f3c48e6ea28d89cee07e56246d7437b00c0..9d2e9bd2f085c3d8c51bbbccca93916d6eec6b8f 100644 >--- a/Tools/ChangeLog >+++ b/Tools/ChangeLog >@@ -1,3 +1,12 @@ >+2018-12-21 Zhifei Fang <zhifei_fang@apple.com> >+ >+ Disable the run-jsc-stress-test remote host key check. >+ https://bugs.webkit.org/show_bug.cgi?id=192988 >+ >+ Reviewed by NOBODY (OOPS!). >+ >+ * Scripts/run-jsc-stress-tests: >+ > 2018-12-21 Michael Catanzaro <mcatanzaro@igalia.com> > > Add JSCOnly to bot dashboard >diff --git a/Tools/Scripts/run-jsc-stress-tests b/Tools/Scripts/run-jsc-stress-tests >index 35a9eb1c55e102b52dd4557023d92d1603e0c5a1..1df9301203d1daad17b772f833828e89672cc7e9 100755 >--- a/Tools/Scripts/run-jsc-stress-tests >+++ b/Tools/Scripts/run-jsc-stress-tests >@@ -1791,7 +1791,7 @@ def sshRead(cmd, remoteIndex=0) > remoteHost = $remoteHosts[remoteIndex] > > result = "" >- IO.popen("ssh -p #{remoteHost.port} #{remoteHost.user}@#{remoteHost.host} '#{cmd}'", "r") { >+ IO.popen("ssh -o NoHostAuthenticationForLocalhost=yes -p #{remoteHost.port} #{remoteHost.user}@#{remoteHost.host} '#{cmd}'", "r") { > | inp | > inp.each_line { > | line | >@@ -1908,8 +1908,8 @@ def runTestRunner(remoteIndex=0) > if !remoteHost.remoteDirectory > remoteHost.remoteDirectory = JSON::parse(sshRead("cat ~/.bencher", remoteIndex))["tempPath"] > end >- mysys("ssh", "-p", remoteHost.port.to_s, "#{remoteHost.user}@#{remoteHost.host}", "mkdir -p #{remoteHost.remoteDirectory}") >- mysys("scp", "-P", remoteHost.port.to_s, ($outputDir.dirname + $tarFileName).to_s, "#{remoteHost.user}@#{remoteHost.host}:#{remoteHost.remoteDirectory}") >+ mysys("ssh", "-o", "NoHostAuthenticationForLocalhost=yes", "-p", remoteHost.port.to_s, "#{remoteHost.user}@#{remoteHost.host}", "mkdir -p #{remoteHost.remoteDirectory}") >+ mysys("scp", "-o", "NoHostAuthenticationForLocalhost=yes", "-P", remoteHost.port.to_s, ($outputDir.dirname + $tarFileName).to_s, "#{remoteHost.user}@#{remoteHost.host}:#{remoteHost.remoteDirectory}") > remoteScript = "\"" > remoteScript += "cd #{remoteHost.remoteDirectory} && " > remoteScript += "rm -rf #{$outputDir.basename} && "
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Formatted Diff
|
Diff
Attachments on
bug 192988
:
357968
|
359390