Title: [222866] trunk/JSTests
Revision
222866
Author
sbar...@apple.com
Date
2017-10-04 11:56:32 -0700 (Wed, 04 Oct 2017)

Log Message

3 poly-proto JSC tests timing out on debug after r222827
https://bugs.webkit.org/show_bug.cgi?id=177880

Rubber stamped by Mark Lam.

* microbenchmarks/poly-proto-access.js:
* typeProfiler/deltablue-for-of.js:
* typeProfiler/getter-richards.js:

Modified Paths

Diff

Modified: trunk/JSTests/ChangeLog (222865 => 222866)


--- trunk/JSTests/ChangeLog	2017-10-04 18:55:19 UTC (rev 222865)
+++ trunk/JSTests/ChangeLog	2017-10-04 18:56:32 UTC (rev 222866)
@@ -1,3 +1,14 @@
+2017-10-04  Saam Barati  <sbar...@apple.com>
+
+        3 poly-proto JSC tests timing out on debug after r222827
+        https://bugs.webkit.org/show_bug.cgi?id=177880
+
+        Rubber stamped by Mark Lam.
+
+        * microbenchmarks/poly-proto-access.js:
+        * typeProfiler/deltablue-for-of.js:
+        * typeProfiler/getter-richards.js:
+
 2017-10-04  Joseph Pecoraro  <pecor...@apple.com>
 
         Unreviewed, marking tco-catch.js as a failure after test262 update

Modified: trunk/JSTests/microbenchmarks/poly-proto-access.js (222865 => 222866)


--- trunk/JSTests/microbenchmarks/poly-proto-access.js	2017-10-04 18:55:19 UTC (rev 222865)
+++ trunk/JSTests/microbenchmarks/poly-proto-access.js	2017-10-04 18:56:32 UTC (rev 222866)
@@ -30,7 +30,7 @@
 noInline(bar);
 
 let start = Date.now();
-for (let i = 0; i < 1000000; ++i) {
+for (let i = 0; i < 100000; ++i) {
     if (i === 5000) {
         for (let arr of a)
             arr.__proto__.foo = 42;

Modified: trunk/JSTests/typeProfiler/deltablue-for-of.js (222865 => 222866)


--- trunk/JSTests/typeProfiler/deltablue-for-of.js	2017-10-04 18:55:19 UTC (rev 222865)
+++ trunk/JSTests/typeProfiler/deltablue-for-of.js	2017-10-04 18:56:32 UTC (rev 222866)
@@ -866,5 +866,5 @@
   projectionTest(50);
 }
 
-for (var i = 0; i < 100; ++i)
+for (var i = 0; i < 35; ++i)
     deltaBlue();

Modified: trunk/JSTests/typeProfiler/getter-richards.js (222865 => 222866)


--- trunk/JSTests/typeProfiler/getter-richards.js	2017-10-04 18:55:19 UTC (rev 222865)
+++ trunk/JSTests/typeProfiler/getter-richards.js	2017-10-04 18:56:32 UTC (rev 222866)
@@ -589,5 +589,5 @@
   return "Packet";
 };
 
-for (var i = 0; i < 350; ++i)
+for (var i = 0; i < 150; ++i)
   runRichards();
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to