Title: [192392] trunk/LayoutTests
Revision
192392
Author
mark....@apple.com
Date
2015-11-12 15:50:10 -0800 (Thu, 12 Nov 2015)

Log Message

Layout Test js/regress/ftl-object-sub.html is flaky.
https://bugs.webkit.org/show_bug.cgi?id=150730

Reviewed by Benjamin Poulain.

Shorten test time by 10x.  Looks like we don't need it to run that long
after all.  This should fix the timeouts.  Also undid the test expectations.

* TestExpectations:
* js/regress/script-tests/ftl-object-sub.js:
(foo):

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (192391 => 192392)


--- trunk/LayoutTests/ChangeLog	2015-11-12 23:27:12 UTC (rev 192391)
+++ trunk/LayoutTests/ChangeLog	2015-11-12 23:50:10 UTC (rev 192392)
@@ -1,3 +1,17 @@
+2015-11-12  Mark Lam  <mark....@apple.com>
+
+        Layout Test js/regress/ftl-object-sub.html is flaky.
+        https://bugs.webkit.org/show_bug.cgi?id=150730
+
+        Reviewed by Benjamin Poulain.
+
+        Shorten test time by 10x.  Looks like we don't need it to run that long
+        after all.  This should fix the timeouts.  Also undid the test expectations.
+
+        * TestExpectations:
+        * js/regress/script-tests/ftl-object-sub.js:
+        (foo):
+
 2015-11-12  Zalan Bujtas  <za...@apple.com>
 
         Ignore visited background color when deciding if the input renderer needs to be painted natively.

Modified: trunk/LayoutTests/TestExpectations (192391 => 192392)


--- trunk/LayoutTests/TestExpectations	2015-11-12 23:27:12 UTC (rev 192391)
+++ trunk/LayoutTests/TestExpectations	2015-11-12 23:50:10 UTC (rev 192392)
@@ -772,4 +772,3 @@
 #
 webkit.org/b/150598 fast/repaint/table-hover-on-link.html [ Pass Failure ]
 
-webkit.org/b/150730 js/regress/ftl-object-sub.html [ Pass Timeout ]

Modified: trunk/LayoutTests/js/regress/script-tests/ftl-object-sub.js (192391 => 192392)


--- trunk/LayoutTests/js/regress/script-tests/ftl-object-sub.js	2015-11-12 23:27:12 UTC (rev 192391)
+++ trunk/LayoutTests/js/regress/script-tests/ftl-object-sub.js	2015-11-12 23:50:10 UTC (rev 192392)
@@ -21,11 +21,11 @@
 }
 noInline(foo);
 
-for (var i = 0; i <= 100000; i++) {
+for (var i = 0; i <= 10000; i++) {
     o1.i = i + 2;
     o2.i = i;
     result += foo(o1, o2);
 }
 
-if (result != 2000020)
+if (result != 200020)
     throw "Bad result: " + result;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to