Title: [182006] trunk
Revision
182006
Author
[email protected]
Date
2015-03-26 03:47:37 -0700 (Thu, 26 Mar 2015)

Log Message

Unreviewed gardening, skip failing tests on AArch64 Linux.

Source/_javascript_Core:

* tests/mozilla/mozilla-tests.yaml:
* tests/stress/cached-prototype-setter.js:

LayoutTests:

* js/script-tests/array-from.js:
* js/script-tests/array-length-shortening.js:
* js/script-tests/dfg-int16array.js:
* js/script-tests/dfg-int8array.js:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (182005 => 182006)


--- trunk/LayoutTests/ChangeLog	2015-03-26 07:51:33 UTC (rev 182005)
+++ trunk/LayoutTests/ChangeLog	2015-03-26 10:47:37 UTC (rev 182006)
@@ -1,3 +1,12 @@
+2015-03-26  Csaba Osztrogonác  <[email protected]>
+
+        Unreviewed gardening, skip failing tests on AArch64 Linux.
+
+        * js/script-tests/array-from.js:
+        * js/script-tests/array-length-shortening.js:
+        * js/script-tests/dfg-int16array.js:
+        * js/script-tests/dfg-int8array.js:
+
 2015-03-25  Alexey Proskuryakov  <[email protected]>
 
         media/track/track-mode.html flakily times out

Modified: trunk/LayoutTests/js/script-tests/array-from.js (182005 => 182006)


--- trunk/LayoutTests/js/script-tests/array-from.js	2015-03-26 07:51:33 UTC (rev 182005)
+++ trunk/LayoutTests/js/script-tests/array-from.js	2015-03-26 10:47:37 UTC (rev 182006)
@@ -1,4 +1,6 @@
-//@ skip if $architecture == "arm64" and $hostOS == "darwin"
+// [ARM] jsc-layout-tests.yaml/js/script-tests/array-from.js fails on Aarch64
+// https://bugs.webkit.org/show_bug.cgi?id=142272
+//@ skip if $architecture == "arm64"
 description("Tests for Array.from");
 
 function section(title) {

Modified: trunk/LayoutTests/js/script-tests/array-length-shortening.js (182005 => 182006)


--- trunk/LayoutTests/js/script-tests/array-length-shortening.js	2015-03-26 07:51:33 UTC (rev 182005)
+++ trunk/LayoutTests/js/script-tests/array-length-shortening.js	2015-03-26 10:47:37 UTC (rev 182006)
@@ -1,3 +1,6 @@
+// [ARM] REGRESSION(181077): jsc-layout-tests.yaml/js/script-tests/array-length-shortening.js fails on AArch64
+// https://bugs.webkit.org/show_bug.cgi?id=142575
+//@ skip if $architecture == "arm64"
 description(
 "Tests array length shortening."
 );

Modified: trunk/LayoutTests/js/script-tests/dfg-int16array.js (182005 => 182006)


--- trunk/LayoutTests/js/script-tests/dfg-int16array.js	2015-03-26 07:51:33 UTC (rev 182005)
+++ trunk/LayoutTests/js/script-tests/dfg-int16array.js	2015-03-26 10:47:37 UTC (rev 182006)
@@ -1,5 +1,11 @@
-//@ skip if $architecture == "arm64" and $hostOS == "darwin"
+// REGRESSION(r181326): It made dfg-int16array.js and dfg-int8array.js fail on AArch64 Linux
+// https://bugs.webkit.org/show_bug.cgi?id=142629
 
+// Fix flakey dfg-int8array.js and dfg-int16array.js tests for ARM64
+// https://bugs.webkit.org/show_bug.cgi?id=138390
+
+//@ skip if $architecture == "arm64"
+
 description(
 "This tests that int16 arrays work in the DFG."
 );

Modified: trunk/LayoutTests/js/script-tests/dfg-int8array.js (182005 => 182006)


--- trunk/LayoutTests/js/script-tests/dfg-int8array.js	2015-03-26 07:51:33 UTC (rev 182005)
+++ trunk/LayoutTests/js/script-tests/dfg-int8array.js	2015-03-26 10:47:37 UTC (rev 182006)
@@ -1,5 +1,11 @@
-//@ skip if $architecture == "arm64" and $hostOS == "darwin"
+// REGRESSION(r181326): It made dfg-int16array.js and dfg-int8array.js fail on AArch64 Linux
+// https://bugs.webkit.org/show_bug.cgi?id=142629
 
+// Fix flakey dfg-int8array.js and dfg-int16array.js tests for ARM64
+// https://bugs.webkit.org/show_bug.cgi?id=138390
+
+//@ skip if $architecture == "arm64"
+
 description(
 "This tests that int8 arrays work in the DFG."
 );

Modified: trunk/Source/_javascript_Core/ChangeLog (182005 => 182006)


--- trunk/Source/_javascript_Core/ChangeLog	2015-03-26 07:51:33 UTC (rev 182005)
+++ trunk/Source/_javascript_Core/ChangeLog	2015-03-26 10:47:37 UTC (rev 182006)
@@ -1,3 +1,10 @@
+2015-03-26  Csaba Osztrogonác  <[email protected]>
+
+        Unreviewed gardening, skip failing tests on AArch64 Linux.
+
+        * tests/mozilla/mozilla-tests.yaml:
+        * tests/stress/cached-prototype-setter.js:
+
 2015-03-26  Filip Pizlo  <[email protected]>
 
         Unreviewed, fixes to silly things. While landing fixes to r181993, I introduced crashes. This fixes them.

Modified: trunk/Source/_javascript_Core/tests/mozilla/mozilla-tests.yaml (182005 => 182006)


--- trunk/Source/_javascript_Core/tests/mozilla/mozilla-tests.yaml	2015-03-26 07:51:33 UTC (rev 182005)
+++ trunk/Source/_javascript_Core/tests/mozilla/mozilla-tests.yaml	2015-03-26 10:47:37 UTC (rev 182006)
@@ -2128,7 +2128,7 @@
   cmd: defaultRunMozillaTest :normal, "../shell.js"
 - path: js1_5/Regress/regress-159334.js
   cmd: |
-      if ($architecture !~ /x86/i and $hostOS == "darwin") or $memoryLimited
+      if ($architecture !~ /x86/i and $hostOS == "darwin") or ($architecture == "arm64" and $hostOS == "linux") or $memoryLimited
           skip
       else
           defaultRunMozillaTest :normal, "../shell.js"

Modified: trunk/Source/_javascript_Core/tests/stress/cached-prototype-setter.js (182005 => 182006)


--- trunk/Source/_javascript_Core/tests/stress/cached-prototype-setter.js	2015-03-26 07:51:33 UTC (rev 182005)
+++ trunk/Source/_javascript_Core/tests/stress/cached-prototype-setter.js	2015-03-26 10:47:37 UTC (rev 182006)
@@ -1,3 +1,7 @@
+// [ARM] stress/cached-prototype-setter.js.no-llint fails intermittently on Aarch64 Linux
+// https://bugs.webkit.org/show_bug.cgi?id=142277
+//@ skip if $architecture == "arm64" and $hostOS == "linux"
+
 (function() {
     var xSetterCalled = false;
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to