Title: [266937] trunk/Tools
Revision
266937
Author
zhifei_f...@apple.com
Date
2020-09-11 14:14:36 -0700 (Fri, 11 Sep 2020)

Log Message

Strip Quotes for run-jsc-stress-tests --model arg
https://bugs.webkit.org/show_bug.cgi?id=216417

Reviewed by Jonathan Bedard.

* Scripts/run-jsc-stress-tests:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (266936 => 266937)


--- trunk/Tools/ChangeLog	2020-09-11 20:27:38 UTC (rev 266936)
+++ trunk/Tools/ChangeLog	2020-09-11 21:14:36 UTC (rev 266937)
@@ -1,3 +1,12 @@
+2020-09-11  Zhifei Fang  <zhifei_f...@apple.com>
+
+        Strip Quotes for run-jsc-stress-tests --model arg
+        https://bugs.webkit.org/show_bug.cgi?id=216417
+
+        Reviewed by Jonathan Bedard.
+
+        * Scripts/run-jsc-stress-tests:
+
 2020-09-11  Sihui Liu  <sihui_...@apple.com>
 
         REGRESSION(r266634): WKThumbnailViewResetsViewStateWhenUnparented is flaky

Modified: trunk/Tools/Scripts/run-jsc-stress-tests (266936 => 266937)


--- trunk/Tools/Scripts/run-jsc-stress-tests	2020-09-11 20:27:38 UTC (rev 266936)
+++ trunk/Tools/Scripts/run-jsc-stress-tests	2020-09-11 21:14:36 UTC (rev 266937)
@@ -266,7 +266,7 @@
     when '--os'
         $hostOS = arg
     when '--model'
-        $model = arg
+        $model = arg.gsub(/\A['"]+|['"]+\Z/, '')
     when '--env-vars'
         $envVars = arg.gsub(/\s+/, ' ').split(' ')
     when '--quick'
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to