Title: [285075] trunk/JSTests
Revision
285075
Author
[email protected]
Date
2021-10-29 22:11:58 -0700 (Fri, 29 Oct 2021)

Log Message

Unreviewed, reduce # of iterations in stress/validate-int-52-ai-state.js due to Debug timeout

* stress/validate-int-52-ai-state.js:

Modified Paths

Diff

Modified: trunk/JSTests/ChangeLog (285074 => 285075)


--- trunk/JSTests/ChangeLog	2021-10-30 04:19:22 UTC (rev 285074)
+++ trunk/JSTests/ChangeLog	2021-10-30 05:11:58 UTC (rev 285075)
@@ -1,5 +1,11 @@
 2021-10-29  Yusuke Suzuki  <[email protected]>
 
+        Unreviewed, reduce # of iterations in stress/validate-int-52-ai-state.js due to Debug timeout
+
+        * stress/validate-int-52-ai-state.js:
+
+2021-10-29  Yusuke Suzuki  <[email protected]>
+
         Unreviewed, skip stress/unlinked-code-block-destructor.js when it is debug build
 
         The bug was not related to Debug build. And it is timing out on Debug build due to

Modified: trunk/JSTests/stress/validate-int-52-ai-state.js (285074 => 285075)


--- trunk/JSTests/stress/validate-int-52-ai-state.js	2021-10-30 04:19:22 UTC (rev 285074)
+++ trunk/JSTests/stress/validate-int-52-ai-state.js	2021-10-30 05:11:58 UTC (rev 285075)
@@ -1,5 +1,5 @@
 //@ runDefault("--validateAbstractInterpreterState=1")
 
-for (var i = 0; i < 10000000; ++i) {
+for (var i = 0; i < 1000000; ++i) {
     fiatInt52(0.0)
 }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to