Title: [266796] trunk/Tools
Revision
266796
Author
[email protected]
Date
2020-09-09 12:42:04 -0700 (Wed, 09 Sep 2020)

Log Message

run-jsc-stress-test: fix escaping for --gnu-parallel-runner
https://bugs.webkit.org/show_bug.cgi?id=215887

Patch by Angelos Oikonomopoulos <[email protected]> on 2020-09-09
Reviewed by Keith Miller.

Change the GNU parallel invocation to use double quotes, to be consistent with
the invocation of ssh by the make runner. This should unbreak
--gnu-parallel-runner after the fix in r265204.

* Scripts/run-jsc-stress-tests:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (266795 => 266796)


--- trunk/Tools/ChangeLog	2020-09-09 19:41:23 UTC (rev 266795)
+++ trunk/Tools/ChangeLog	2020-09-09 19:42:04 UTC (rev 266796)
@@ -1,3 +1,16 @@
+2020-09-09  Angelos Oikonomopoulos  <[email protected]>
+
+        run-jsc-stress-test: fix escaping for --gnu-parallel-runner
+        https://bugs.webkit.org/show_bug.cgi?id=215887
+
+        Reviewed by Keith Miller.
+
+        Change the GNU parallel invocation to use double quotes, to be consistent with
+        the invocation of ssh by the make runner. This should unbreak
+        --gnu-parallel-runner after the fix in r265204.
+
+        * Scripts/run-jsc-stress-tests:
+
 2020-09-09  Aakash Jain  <[email protected]>
 
         Add Philippe Normand to EWS emails unsubscribe list

Modified: trunk/Tools/Scripts/run-jsc-stress-tests (266795 => 266796)


--- trunk/Tools/Scripts/run-jsc-stress-tests	2020-09-09 19:41:23 UTC (rev 266795)
+++ trunk/Tools/Scripts/run-jsc-stress-tests	2020-09-09 19:42:04 UTC (rev 266796)
@@ -2440,10 +2440,10 @@
             "--slf", slf,
             "--timeout", timeout.to_s,
             "-a", inputs,
-            "'cd #{$outputDir.basename}/.runner && " +
+            "\"cd #{$outputDir.basename}/.runner && " +
             exportBaseEnvironmentVariables +
             $envVars.collect { |var | "export #{var} &&"}.join("") +
-            "sh '"
+            "sh \""
         ]
         $ignoreNextCommandExecutionExitCode = true
         runAndMonitorTestRunnerCommand(*cmd)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to