Title: [208160] trunk/JSTests
Revision
208160
Author
[email protected]
Date
2016-10-31 10:26:36 -0700 (Mon, 31 Oct 2016)

Log Message

Debug JSC test microbenchmarks/pure-get-by-id-cse-2.js timing out
https://bugs.webkit.org/show_bug.cgi?id=164227

Unreviewed timeout fix.

* microbenchmarks/pure-get-by-id-cse-2.js:

Modified Paths

Diff

Modified: trunk/JSTests/ChangeLog (208159 => 208160)


--- trunk/JSTests/ChangeLog	2016-10-31 17:18:19 UTC (rev 208159)
+++ trunk/JSTests/ChangeLog	2016-10-31 17:26:36 UTC (rev 208160)
@@ -1,3 +1,12 @@
+2016-10-31  Saam Barati  <[email protected]>
+
+        Debug JSC test microbenchmarks/pure-get-by-id-cse-2.js timing out
+        https://bugs.webkit.org/show_bug.cgi?id=164227
+
+        Unreviewed timeout fix.
+
+        * microbenchmarks/pure-get-by-id-cse-2.js:
+
 2016-10-31  Keith Miller  <[email protected]>
 
         autogenerated files from wasm.json should be in derived sources.

Modified: trunk/JSTests/microbenchmarks/pure-get-by-id-cse-2.js (208159 => 208160)


--- trunk/JSTests/microbenchmarks/pure-get-by-id-cse-2.js	2016-10-31 17:18:19 UTC (rev 208159)
+++ trunk/JSTests/microbenchmarks/pure-get-by-id-cse-2.js	2016-10-31 17:26:36 UTC (rev 208160)
@@ -20,9 +20,9 @@
     objects.push(obj);
 }
 
-for (let i = 0; i < 1000000; i++) {
+for (let i = 0; i < 10000; i++) {
     let obj = objects[i % objects.length];
-    foo(obj, 150);
+    foo(obj, 25);
 }
 
 const verbose = false;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to