Title: [205317] trunk/JSTests
Revision
205317
Author
[email protected]
Date
2016-09-01 14:45:52 -0700 (Thu, 01 Sep 2016)

Log Message

arith-abs-on-various-types.js is flaky

Unreviewed.

Patch by Benjamin Poulain <[email protected]> on 2016-09-01

* stress/arith-abs-on-various-types.js:
Two compilation is too small for the worst case.
Math.abs() can be typed integer->number->untyped if we are very unlucky.

Modified Paths

Diff

Modified: trunk/JSTests/ChangeLog (205316 => 205317)


--- trunk/JSTests/ChangeLog	2016-09-01 21:18:44 UTC (rev 205316)
+++ trunk/JSTests/ChangeLog	2016-09-01 21:45:52 UTC (rev 205317)
@@ -1,3 +1,13 @@
+2016-09-01  Benjamin Poulain  <[email protected]>
+
+        arith-abs-on-various-types.js is flaky
+
+        Unreviewed.
+
+        * stress/arith-abs-on-various-types.js:
+        Two compilation is too small for the worst case.
+        Math.abs() can be typed integer->number->untyped if we are very unlucky.
+
 2016-09-01  Filip Pizlo  <[email protected]>
 
         ObjectAllocationSinkingPhase::insertOSRHintsForUpdate() fails to emit updated hints in some cases

Modified: trunk/JSTests/stress/arith-abs-on-various-types.js (205316 => 205317)


--- trunk/JSTests/stress/arith-abs-on-various-types.js	2016-09-01 21:18:44 UTC (rev 205316)
+++ trunk/JSTests/stress/arith-abs-on-various-types.js	2016-09-01 21:45:52 UTC (rev 205317)
@@ -73,7 +73,7 @@
                 throw "Failed testAllTypesCall for input " + testCaseInput[0] + " expected " + testCaseInput[1] + " got " + output;
         }
     }
-    if (numberOfDFGCompiles(opaqueAllTypesAbs) > 2)
+    if (numberOfDFGCompiles(opaqueAllTypesAbs) > 3)
         throw "We should have detected abs() was polymorphic and generated a generic version.";
 }
 testAllTypesCall();
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to