Title: [155310] trunk/Tools
Revision
155310
Author
[email protected]
Date
2013-09-08 12:20:31 -0700 (Sun, 08 Sep 2013)

Log Message

Unreviewed, never pass Pathname to shellescape() as old versions of Ruby don't
like that. Pass a string instead.

* Scripts/run-jsc-stress-tests:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (155309 => 155310)


--- trunk/Tools/ChangeLog	2013-09-08 18:43:46 UTC (rev 155309)
+++ trunk/Tools/ChangeLog	2013-09-08 19:20:31 UTC (rev 155310)
@@ -1,5 +1,12 @@
 2013-09-08  Filip Pizlo  <[email protected]>
 
+        Unreviewed, never pass Pathname to shellescape() as old versions of Ruby don't
+        like that. Pass a string instead.
+
+        * Scripts/run-jsc-stress-tests:
+
+2013-09-08  Filip Pizlo  <[email protected]>
+
         run-jsc-stress-tests should run tests in parallel if possible
         https://bugs.webkit.org/show_bug.cgi?id=120996
 

Modified: trunk/Tools/Scripts/run-jsc-stress-tests (155309 => 155310)


--- trunk/Tools/Scripts/run-jsc-stress-tests	2013-09-08 18:43:46 UTC (rev 155309)
+++ trunk/Tools/Scripts/run-jsc-stress-tests	2013-09-08 19:20:31 UTC (rev 155310)
@@ -103,7 +103,7 @@
         File.open(filename, "w") {
             | outp |
             outp.puts "echo Running #{Shellwords.shellescape(@name)}"
-            outp.puts("(cd #{Shellwords.shellescape(@directory)} && " +
+            outp.puts("(cd #{Shellwords.shellescape(@directory.to_s)} && " +
                       @arguments.map{|v| Shellwords.shellescape(v)}.join(' ') +
                       ") || #{failCommand}")
         }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to