Title: [179747] trunk/Tools
Revision
179747
Author
[email protected]
Date
2015-02-06 08:27:54 -0800 (Fri, 06 Feb 2015)

Log Message

run-jsc-stress-tests --remote should create remote directory before copying the bundle
https://bugs.webkit.org/show_bug.cgi?id=141329

Reviewed by Michael Saboff.

* Scripts/run-jsc-stress-tests:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (179746 => 179747)


--- trunk/Tools/ChangeLog	2015-02-06 16:04:39 UTC (rev 179746)
+++ trunk/Tools/ChangeLog	2015-02-06 16:27:54 UTC (rev 179747)
@@ -1,3 +1,12 @@
+2015-02-06  Csaba Osztrogonác  <[email protected]>
+
+        run-jsc-stress-tests --remote should create remote directory before copying the bundle
+        https://bugs.webkit.org/show_bug.cgi?id=141329
+
+        Reviewed by Michael Saboff.
+
+        * Scripts/run-jsc-stress-tests:
+
 2015-02-06  Carlos Garcia Campos  <[email protected]>
 
         [GTK] Remove WebKitWebView::close-notification signal

Modified: trunk/Tools/Scripts/run-jsc-stress-tests (179746 => 179747)


--- trunk/Tools/Scripts/run-jsc-stress-tests	2015-02-06 16:04:39 UTC (rev 179746)
+++ trunk/Tools/Scripts/run-jsc-stress-tests	2015-02-06 16:27:54 UTC (rev 179747)
@@ -1368,6 +1368,7 @@
 def runShellTestRunner
     if $remote
         $remoteDirectory = JSON::parse(sshRead("cat ~/.bencher"))["tempPath"]
+        mysys("ssh", "-p", $remotePort.to_s, "#{$remoteUser}@#{$remoteHost}", "mkdir -p #{$remoteDirectory}")
         mysys("scp", "-P", $remotePort.to_s, ($outputDir.dirname + $tarFileName).to_s, "#{$remoteUser}@#{$remoteHost}:#{$remoteDirectory}")
         remoteScript = "\""
         remoteScript += "cd #{$remoteDirectory} && "
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to