Title: [243191] trunk/JSTests
Revision
243191
Author
[email protected]
Date
2019-03-19 21:30:38 -0700 (Tue, 19 Mar 2019)

Log Message

Unreviewed, reduce # of iterations to avoid timing out after r242991
https://bugs.webkit.org/show_bug.cgi?id=195791

To avoid timing out, this patch reduces it from 3e7 to 1e7. 1e7 iteration counts still reproduce the issue at 60%.

* stress/symbol-is-destructed-before-refing-underlying-symbol-impl.js:

Modified Paths

Diff

Modified: trunk/JSTests/ChangeLog (243190 => 243191)


--- trunk/JSTests/ChangeLog	2019-03-20 04:08:23 UTC (rev 243190)
+++ trunk/JSTests/ChangeLog	2019-03-20 04:30:38 UTC (rev 243191)
@@ -1,3 +1,12 @@
+2019-03-19  Yusuke Suzuki  <[email protected]>
+
+        Unreviewed, reduce # of iterations to avoid timing out after r242991
+        https://bugs.webkit.org/show_bug.cgi?id=195791
+
+        To avoid timing out, this patch reduces it from 3e7 to 1e7. 1e7 iteration counts still reproduce the issue at 60%.
+
+        * stress/symbol-is-destructed-before-refing-underlying-symbol-impl.js:
+
 2019-03-19  Caio Lima  <[email protected]>
 
         [JSC] microbenchmarks/generate-multiple-llint-entrypoints.js is running out of executable memory on ARMv7

Modified: trunk/JSTests/stress/symbol-is-destructed-before-refing-underlying-symbol-impl.js (243190 => 243191)


--- trunk/JSTests/stress/symbol-is-destructed-before-refing-underlying-symbol-impl.js	2019-03-20 04:08:23 UTC (rev 243190)
+++ trunk/JSTests/stress/symbol-is-destructed-before-refing-underlying-symbol-impl.js	2019-03-20 04:30:38 UTC (rev 243191)
@@ -7,7 +7,7 @@
 }
 noInline(foo);
 
-for (let i = 0; i < 3e7; i++) {
+for (let i = 0; i < 1e7; i++) {
     let a = {};
     foo(a);
 }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to