Title: [182158] trunk/Source/_javascript_Core
Revision
182158
Author
msab...@apple.com
Date
2015-03-30 15:58:22 -0700 (Mon, 30 Mar 2015)

Log Message

Fix flakey float32-repeat-out-of-bounds.js and int8-repeat-out-of-bounds.js tests for ARM64
https://bugs.webkit.org/show_bug.cgi?id=138391

Reviewed by Mark Lam.

Re-enabling these tests as I can't get them to fail on local iOS test devices.
There have been many changes since these tests were disabled.
I'll watch automated test results for failures.  If there are failures running automated
testing, it might be due to the device's relative CPU performance.

* tests/stress/float32-repeat-out-of-bounds.js:
* tests/stress/int8-repeat-out-of-bounds.js:

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (182157 => 182158)


--- trunk/Source/_javascript_Core/ChangeLog	2015-03-30 22:47:05 UTC (rev 182157)
+++ trunk/Source/_javascript_Core/ChangeLog	2015-03-30 22:58:22 UTC (rev 182158)
@@ -1,3 +1,18 @@
+2015-03-30  Michael Saboff  <msab...@apple.com>
+
+        Fix flakey float32-repeat-out-of-bounds.js and int8-repeat-out-of-bounds.js tests for ARM64
+        https://bugs.webkit.org/show_bug.cgi?id=138391
+
+        Reviewed by Mark Lam.
+
+        Re-enabling these tests as I can't get them to fail on local iOS test devices.
+        There have been many changes since these tests were disabled.
+        I'll watch automated test results for failures.  If there are failures running automated
+        testing, it might be due to the device's relative CPU performance.
+        
+        * tests/stress/float32-repeat-out-of-bounds.js:
+        * tests/stress/int8-repeat-out-of-bounds.js:
+
 2015-03-30  Joseph Pecoraro  <pecor...@apple.com>
 
         Web Inspector: Regression: Preview for [[null]] shouldn't be []

Modified: trunk/Source/_javascript_Core/tests/stress/float32-repeat-out-of-bounds.js (182157 => 182158)


--- trunk/Source/_javascript_Core/tests/stress/float32-repeat-out-of-bounds.js	2015-03-30 22:47:05 UTC (rev 182157)
+++ trunk/Source/_javascript_Core/tests/stress/float32-repeat-out-of-bounds.js	2015-03-30 22:58:22 UTC (rev 182158)
@@ -1,4 +1,4 @@
-//@ if $architecture == "arm64" and $hostOS == "darwin" then skip else defaultNoEagerRun end
+//@ defaultNoEagerRun
 
 function foo(a) {
     a[0] = 1;

Modified: trunk/Source/_javascript_Core/tests/stress/int8-repeat-out-of-bounds.js (182157 => 182158)


--- trunk/Source/_javascript_Core/tests/stress/int8-repeat-out-of-bounds.js	2015-03-30 22:47:05 UTC (rev 182157)
+++ trunk/Source/_javascript_Core/tests/stress/int8-repeat-out-of-bounds.js	2015-03-30 22:58:22 UTC (rev 182158)
@@ -1,4 +1,4 @@
-//@ if $architecture == "arm64" and $hostOS == "darwin" then skip else defaultNoEagerRun end
+//@ defaultNoEagerRun
 
 function foo(a) {
     a[0] = 1;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to