Title: [254838] trunk/Tools
Revision
254838
Author
[email protected]
Date
2020-01-20 15:55:48 -0800 (Mon, 20 Jan 2020)

Log Message

REGRESSION(r254788): mozilla-tests.yaml/js1_5/Regress/regress-191633.js.mozilla fails
https://bugs.webkit.org/show_bug.cgi?id=206477
<rdar://problem/58714886>

Unreviewed.

In r232603 when we added test specific options, the implementation did not
clear the test specific options before parsing each test inside a yaml
file. It only worked for tests where we ran each js file inside a directory.
This patch makes it also work for yaml files.

* Scripts/run-jsc-stress-tests:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (254837 => 254838)


--- trunk/Tools/ChangeLog	2020-01-20 23:32:51 UTC (rev 254837)
+++ trunk/Tools/ChangeLog	2020-01-20 23:55:48 UTC (rev 254838)
@@ -1,3 +1,18 @@
+2020-01-20  Saam Barati  <[email protected]>
+
+        REGRESSION(r254788): mozilla-tests.yaml/js1_5/Regress/regress-191633.js.mozilla fails
+        https://bugs.webkit.org/show_bug.cgi?id=206477
+        <rdar://problem/58714886>
+
+        Unreviewed.
+
+        In r232603 when we added test specific options, the implementation did not
+        clear the test specific options before parsing each test inside a yaml
+        file. It only worked for tests where we ran each js file inside a directory.
+        This patch makes it also work for yaml files.
+
+        * Scripts/run-jsc-stress-tests:
+
 2020-01-20  David Kilzer  <[email protected]>
 
         Fix missing header guards and clean up empty files in WebCore, WebKitLegacy, WebKit, Tools

Modified: trunk/Tools/Scripts/run-jsc-stress-tests (254837 => 254838)


--- trunk/Tools/Scripts/run-jsc-stress-tests	2020-01-20 23:32:51 UTC (rev 254837)
+++ trunk/Tools/Scripts/run-jsc-stress-tests	2020-01-20 23:55:48 UTC (rev 254838)
@@ -1652,6 +1652,7 @@
                     $benchmarkDirectory = path.dirname
                     
                     $runCommandOptions = {}
+                    $testSpecificRequiredOptions = []
                     eval entry["cmd"]
                 }
             }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to