Title: [280109] trunk/Tools
Revision
280109
Author
sbar...@apple.com
Date
2021-07-20 15:55:56 -0700 (Tue, 20 Jul 2021)

Log Message

Don't run ftl-eager-no-cjit on debug builds
https://bugs.webkit.org/show_bug.cgi?id=228118

Reviewed by Mark Lam.

Many debug JSC stress tests time out intermittently. All I see are under
the ftl-eager-no-cjit mode.

* Scripts/run-jsc-stress-tests:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (280108 => 280109)


--- trunk/Tools/ChangeLog	2021-07-20 22:07:55 UTC (rev 280108)
+++ trunk/Tools/ChangeLog	2021-07-20 22:55:56 UTC (rev 280109)
@@ -1,3 +1,15 @@
+2021-07-20  Saam Barati  <sbar...@apple.com>
+
+        Don't run ftl-eager-no-cjit on debug builds
+        https://bugs.webkit.org/show_bug.cgi?id=228118
+
+        Reviewed by Mark Lam.
+
+        Many debug JSC stress tests time out intermittently. All I see are under
+        the ftl-eager-no-cjit mode.
+
+        * Scripts/run-jsc-stress-tests:
+
 2021-07-20  Ayumi Kojima  <ayumi_koj...@apple.com>
 
         Adding myself to Contributors.json

Modified: trunk/Tools/Scripts/run-jsc-stress-tests (280108 => 280109)


--- trunk/Tools/Scripts/run-jsc-stress-tests	2021-07-20 22:07:55 UTC (rev 280108)
+++ trunk/Tools/Scripts/run-jsc-stress-tests	2021-07-20 22:55:56 UTC (rev 280109)
@@ -897,7 +897,7 @@
 
             runNoFTL
             runFTLEager
-            runFTLEagerNoCJITValidate
+            runFTLEagerNoCJITValidate if $buildType == "release"
             runFTLNoCJITSmallPool
 
             return if $mode == "basic"
@@ -937,7 +937,7 @@
             runFTLNoCJITNoPutStackValidate
             runFTLNoCJITNoInlineValidate
             runFTLEager
-            runFTLEagerNoCJITValidate
+            runFTLEagerNoCJITValidate if $buildType == "release"
         end
     end
 end
@@ -1008,7 +1008,7 @@
         runFTLNoCJITNoPutStackValidate
         runFTLNoCJITNoInlineValidate
         runFTLEager
-        runFTLEagerNoCJITValidate
+        runFTLEagerNoCJITValidate if $buildType == "release"
         runFTLNoCJITSmallPool
     end
 end
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to