Title: [240191] trunk/Tools
Revision
240191
Author
commit-qu...@webkit.org
Date
2019-01-18 17:06:47 -0800 (Fri, 18 Jan 2019)

Log 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_f...@apple.com> on 2019-01-18
Reviewed by Dewei Zhu.

* Scripts/run-jsc-stress-tests:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (240190 => 240191)


--- trunk/Tools/ChangeLog	2019-01-19 00:22:41 UTC (rev 240190)
+++ trunk/Tools/ChangeLog	2019-01-19 01:06:47 UTC (rev 240191)
@@ -1,3 +1,12 @@
+2019-01-18  Zhifei FANG  <zhifei_f...@apple.com>
+
+        Disable the run-jsc-stress-test remote host key check [second round].
+        https://bugs.webkit.org/show_bug.cgi?id=192988
+
+        Reviewed by Dewei Zhu.
+
+        * Scripts/run-jsc-stress-tests:
+
 2019-01-18  Aakash Jain  <aakash_j...@apple.com>
 
         [build.webkit.org] unit-test failure Builder GTK Linux 32-bit Release doesn't exist

Modified: trunk/Tools/Scripts/run-jsc-stress-tests (240190 => 240191)


--- trunk/Tools/Scripts/run-jsc-stress-tests	2019-01-19 00:22:41 UTC (rev 240190)
+++ trunk/Tools/Scripts/run-jsc-stress-tests	2019-01-19 01:06:47 UTC (rev 240191)
@@ -1920,7 +1920,7 @@
         remoteScript += "export JSCTEST_timeout=#{Shellwords.shellescape(ENV['JSCTEST_timeout'])} && "
         $envVars.each { |var| remoteScript += "export " << var << "\n" }
         remoteScript += "#{testRunnerCommand(remoteIndex)}\""
-        runAndMonitorTestRunnerCommand("ssh", "-p", remoteHost.port.to_s, "#{remoteHost.user}@#{remoteHost.host}", remoteScript)
+        runAndMonitorTestRunnerCommand("ssh", "-o", "NoHostAuthenticationForLocalhost=yes", "-p", remoteHost.port.to_s, "#{remoteHost.user}@#{remoteHost.host}", remoteScript)
     else
         Dir.chdir($runnerDir) {
             runAndMonitorTestRunnerCommand(testRunnerCommand)
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to