Title: [261689] trunk
Revision
261689
Author
commit-qu...@webkit.org
Date
2020-05-14 07:34:46 -0700 (Thu, 14 May 2020)

Log Message

stress/array-buffer-view-watchpoint-can-be-fired-in-really-add-in-dfg.js failing on ppc64le and s390x
https://bugs.webkit.org/show_bug.cgi?id=211724

Patch by Michael Catanzaro <mcatanz...@gnome.org> on 2020-05-14
Reviewed by Carlos Alberto Lopez Perez.

JSTests:

This test is broken on ppc64le and s390x, so skip it.

* stress/array-buffer-view-watchpoint-can-be-fired-in-really-add-in-dfg.js:

Tools:

Add architecture detection for PowerPC and S/390.

* Scripts/run-jsc-stress-tests:

Modified Paths

Diff

Modified: trunk/JSTests/ChangeLog (261688 => 261689)


--- trunk/JSTests/ChangeLog	2020-05-14 13:34:41 UTC (rev 261688)
+++ trunk/JSTests/ChangeLog	2020-05-14 14:34:46 UTC (rev 261689)
@@ -1,3 +1,14 @@
+2020-05-14  Michael Catanzaro  <mcatanz...@gnome.org>
+
+        stress/array-buffer-view-watchpoint-can-be-fired-in-really-add-in-dfg.js failing on ppc64le and s390x
+        https://bugs.webkit.org/show_bug.cgi?id=211724
+
+        Reviewed by Carlos Alberto Lopez Perez.
+
+        This test is broken on ppc64le and s390x, so skip it.
+
+        * stress/array-buffer-view-watchpoint-can-be-fired-in-really-add-in-dfg.js:
+
 2020-05-13  Paulo Matos  <pma...@igalia.com>
 
         Skip on MIPS test stress/has-own-property-name-cache-symbols-and-strings.js

Modified: trunk/JSTests/stress/array-buffer-view-watchpoint-can-be-fired-in-really-add-in-dfg.js (261688 => 261689)


--- trunk/JSTests/stress/array-buffer-view-watchpoint-can-be-fired-in-really-add-in-dfg.js	2020-05-14 13:34:41 UTC (rev 261688)
+++ trunk/JSTests/stress/array-buffer-view-watchpoint-can-be-fired-in-really-add-in-dfg.js	2020-05-14 14:34:46 UTC (rev 261689)
@@ -1,4 +1,4 @@
-//@ skip if $architecture == "arm" and $hostOS == "linux"
+//@ skip if ["arm", "powerpc", "s390"].include?($architecture) and $hostOS == "linux"
 //@ requireOptions("-e", "let iterations=40000") if ["mips"].include?($architecture)
 //@ runDefault("--jitPolicyScale=0")
 

Modified: trunk/Tools/ChangeLog (261688 => 261689)


--- trunk/Tools/ChangeLog	2020-05-14 13:34:41 UTC (rev 261688)
+++ trunk/Tools/ChangeLog	2020-05-14 14:34:46 UTC (rev 261689)
@@ -1,3 +1,14 @@
+2020-05-14  Michael Catanzaro  <mcatanz...@gnome.org>
+
+        stress/array-buffer-view-watchpoint-can-be-fired-in-really-add-in-dfg.js failing on ppc64le and s390x
+        https://bugs.webkit.org/show_bug.cgi?id=211724
+
+        Reviewed by Carlos Alberto Lopez Perez.
+
+        Add architecture detection for PowerPC and S/390.
+
+        * Scripts/run-jsc-stress-tests:
+
 2020-05-14  Philippe Normand  <pnorm...@igalia.com>
 
         [WPE] Tools/wpe/install-dependencies fails due to missing pipenv

Modified: trunk/Tools/Scripts/run-jsc-stress-tests (261688 => 261689)


--- trunk/Tools/Scripts/run-jsc-stress-tests	2020-05-14 13:34:41 UTC (rev 261688)
+++ trunk/Tools/Scripts/run-jsc-stress-tests	2020-05-14 14:34:46 UTC (rev 261689)
@@ -386,6 +386,10 @@
         "x86"
     when 8
         "mips"
+    when 21
+        "powerpc"
+    when 22
+        "s390"
     when 62
         "x86-64"
     when 40
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to