Title: [169396] trunk/Tools
Revision
169396
Author
msab...@apple.com
Date
2014-05-27 11:53:07 -0700 (Tue, 27 May 2014)

Log Message

REGRESSION(r169265): sh: line 0: cd: ../.vm
https://bugs.webkit.org/show_bug.cgi?id=133242

Rubber stamped by Oliver Hunt.

Changed runAndMonitorTestRunnerCommand() to pass mysys as a string instead of an
array since the command may contain character escapes that don't work with the
array form of system().

* Scripts/run-jsc-stress-tests:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (169395 => 169396)


--- trunk/Tools/ChangeLog	2014-05-27 18:35:39 UTC (rev 169395)
+++ trunk/Tools/ChangeLog	2014-05-27 18:53:07 UTC (rev 169396)
@@ -1,3 +1,16 @@
+2014-05-27  Michael Saboff  <msab...@apple.com>
+
+        REGRESSION(r169265): sh: line 0: cd: ../.vm
+        https://bugs.webkit.org/show_bug.cgi?id=133242
+
+        Rubber stamped by Oliver Hunt.
+
+        Changed runAndMonitorTestRunnerCommand() to pass mysys as a string instead of an
+        array since the command may contain character escapes that don't work with the
+        array form of system().
+
+        * Scripts/run-jsc-stress-tests:
+
 2014-05-27  Gyuyoung Kim  <gyuyoung....@samsung.com>
 
         [EFL] Change download url of freetype6

Modified: trunk/Tools/Scripts/run-jsc-stress-tests (169395 => 169396)


--- trunk/Tools/Scripts/run-jsc-stress-tests	2014-05-27 18:35:39 UTC (rev 169395)
+++ trunk/Tools/Scripts/run-jsc-stress-tests	2014-05-27 18:53:07 UTC (rev 169396)
@@ -1230,7 +1230,7 @@
 
 def runAndMonitorTestRunnerCommand(numberOfTests, *cmd)
     unless $progressMeter
-        mysys(*cmd)
+        mysys(cmd.join(' '))
     else
        running = {}
        didRun = {}
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to