Title: [180684] trunk/Source/_javascript_Core
Revision
180684
Author
msab...@apple.com
Date
2015-02-26 10:36:43 -0800 (Thu, 26 Feb 2015)

Log Message

[Win] Debug-only _javascript_Core failures
https://bugs.webkit.org/show_bug.cgi?id=142045

Rubber stamped by Filip Pizlo.

Reduced loop count to a more reasonable value of 10,000.  This still gets us to tier up
to the FTL, but doesn't take too long to run.

* tests/stress/repeated-arity-check-fail.js:

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (180683 => 180684)


--- trunk/Source/_javascript_Core/ChangeLog	2015-02-26 18:34:51 UTC (rev 180683)
+++ trunk/Source/_javascript_Core/ChangeLog	2015-02-26 18:36:43 UTC (rev 180684)
@@ -1,3 +1,15 @@
+2015-02-26  Michael Saboff  <msab...@apple.com>
+
+        [Win] Debug-only _javascript_Core failures
+        https://bugs.webkit.org/show_bug.cgi?id=142045
+
+        Rubber stamped by Filip Pizlo.
+
+        Reduced loop count to a more reasonable value of 10,000.  This still gets us to tier up
+        to the FTL, but doesn't take too long to run.
+
+        * tests/stress/repeated-arity-check-fail.js:
+
 2015-02-26  Brent Fulgham  <bfulg...@apple.com>
 
         [Win] Make build logs more legible by reducing noise

Modified: trunk/Source/_javascript_Core/tests/stress/repeated-arity-check-fail.js (180683 => 180684)


--- trunk/Source/_javascript_Core/tests/stress/repeated-arity-check-fail.js	2015-02-26 18:34:51 UTC (rev 180683)
+++ trunk/Source/_javascript_Core/tests/stress/repeated-arity-check-fail.js	2015-02-26 18:36:43 UTC (rev 180684)
@@ -3,6 +3,6 @@
 
 noInline(bar);
 
-for (var i = 0; i < 10000000; ++i)
+for (var i = 0; i < 10000; ++i)
     bar();
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to