Title: [206947] trunk/LayoutTests
Revision
206947
Author
[email protected]
Date
2016-10-07 19:07:09 -0700 (Fri, 07 Oct 2016)

Log Message

REGRESSION (r206853?): LayoutTest js/regress-141098.html failing
https://bugs.webkit.org/show_bug.cgi?id=163046

Reviewed by Saam Barati.

This is attempt-to-fix patch since I cannot reproduce this flakiness.
We reduce the number of frames to back off from the stack overflow to
catch the closer frame limit to the actual stack limit.

* js/script-tests/regress-141098.js:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (206946 => 206947)


--- trunk/LayoutTests/ChangeLog	2016-10-08 00:23:46 UTC (rev 206946)
+++ trunk/LayoutTests/ChangeLog	2016-10-08 02:07:09 UTC (rev 206947)
@@ -1,3 +1,16 @@
+2016-10-07  Yusuke Suzuki  <[email protected]>
+
+        REGRESSION (r206853?): LayoutTest js/regress-141098.html failing
+        https://bugs.webkit.org/show_bug.cgi?id=163046
+
+        Reviewed by Saam Barati.
+
+        This is attempt-to-fix patch since I cannot reproduce this flakiness.
+        We reduce the number of frames to back off from the stack overflow to
+        catch the closer frame limit to the actual stack limit.
+
+        * js/script-tests/regress-141098.js:
+
 2016-10-07  Wenson Hsieh  <[email protected]>
 
         Unreviewed, mark a test as failing on iOS simulator

Modified: trunk/LayoutTests/js/script-tests/regress-141098.js (206946 => 206947)


--- trunk/LayoutTests/js/script-tests/regress-141098.js	2016-10-08 00:23:46 UTC (rev 206946)
+++ trunk/LayoutTests/js/script-tests/regress-141098.js	2016-10-08 02:07:09 UTC (rev 206947)
@@ -13,7 +13,7 @@
 // Under no circumstance should this test ever crash.
 let countStart = 2;
 let countIncrement = 8;
-let numberOfFramesToBackoffFromStackOverflowPoint = 50;
+let numberOfFramesToBackoffFromStackOverflowPoint = 10;
 
 // backoffEverything is chosen to be -1 because a negative number will never be
 // decremented to 0, and hence, will cause probeAndRecurse() to return out of every
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to