Title: [281156] trunk
Revision
281156
Author
commit-qu...@webkit.org
Date
2021-08-17 12:23:23 -0700 (Tue, 17 Aug 2021)

Log Message

Unreviewed. Skip failing MIPS tests
https://bugs.webkit.org/show_bug.cgi?id=229198

Patch by Mikhail R. Gadelha <mikh...@igalia.com> on 2021-08-17

JSTests:

* ChakraCore.yaml:

LayoutTests:

* platform/wpe/TestExpectations:

Modified Paths

Diff

Modified: trunk/JSTests/ChakraCore.yaml (281155 => 281156)


--- trunk/JSTests/ChakraCore.yaml	2021-08-17 19:11:24 UTC (rev 281155)
+++ trunk/JSTests/ChakraCore.yaml	2021-08-17 19:23:23 UTC (rev 281156)
@@ -462,7 +462,13 @@
 - path: ChakraCore/test/ControlFlow/forInPrimitive.js
   cmd: runChakra :baseline, "NoException", "forInPrimitive.baseline-jsc", []
 - path: ChakraCore/test/ControlFlow/enumeration_adddelete.js
-  cmd: runChakra :baseline, "NoException", "enumeration_adddelete.baseline", []
+  # Currently fails on the mips (in 32-bits mode).
+  cmd: |
+    if $architecture == "mips"
+      skip
+    else
+      runChakra :baseline, "NoException", "enumeration_adddelete.baseline", []
+    end
 - path: ChakraCore/test/ControlFlow/forInArrayAdd.js
   cmd: runChakra :baseline, "NoException", "forinArrayAddv3.baseline", []
 - path: ChakraCore/test/ControlFlow/forInObjectWithPrototype.js
@@ -1387,7 +1393,13 @@
 - path: ChakraCore/test/UnifiedRegex/captures.js
   cmd: runChakra :baseline, "NoException", "captures.baseline-jsc", []
 - path: ChakraCore/test/UnifiedRegex/class-case.js
-  cmd: runChakra :baseline, "NoException", "class-case.baseline", []
+  # Currently fails on the mips (in 32-bits mode).
+  cmd: |
+    if $architecture == "mips"
+      skip
+    else
+      runChakra :baseline, "NoException", "class-case.baseline", []
+    end
 - path: ChakraCore/test/UnifiedRegex/crazy.js
   # Skipped because the original test file contained tabs which we don't allow in WebKit source.
   cmd: runChakra :skip, "NoException", "crazy.baseline", []
@@ -2249,9 +2261,21 @@
   # Different behavior.
   cmd: runChakra :skip, "NoException", "22.callerCalleeArguments_sm.baseline", []
 - path: ChakraCore/test/strict/23.reservedWords.js
-  cmd: runChakra :baseline, "NoException", "23.reservedWords.baseline-jsc", []
+  # Currently fails on the mips (in 32-bits mode).
+  cmd: |
+    if $architecture == "mips"
+      skip
+    else
+      runChakra :baseline, "NoException", "23.reservedWords.baseline-jsc", []
+    end
 - path: ChakraCore/test/strict/23.reservedWords_sm.js
-  cmd: runChakra :baseline, "NoException", "23.reservedWords_sm.baseline-jsc", []
+  # Currently fails on the mips (in 32-bits mode).
+  cmd: |
+    if $architecture == "mips"
+      skip
+    else
+      runChakra :baseline, "NoException", "23.reservedWords_sm.baseline-jsc", []
+    end
 - path: ChakraCore/test/strict/24.properties.js
   cmd: runChakra :baseline, "NoException", "24.properties.baseline", []
 - path: ChakraCore/test/strict/24.properties_sm.js
@@ -2365,7 +2389,13 @@
   # Different behavior. JSC allows writing/reading to negative indicies of typed arrays and Chakra doesn't.
   cmd: runChakra :skip, "NoException", "negIndexes.baseline", []
 - path: ChakraCore/test/typedarray/set.js
-  cmd: runChakra :baseline, "NoException", "set.baseline-jsc", []
+  # Currently fails on the mips (in 32-bits mode).
+  cmd: |
+    if $architecture == "mips"
+      skip
+    else
+      runChakra :baseline, "NoException", "set.baseline-jsc", []
+    end
 - path: ChakraCore/test/typedarray/samethread.js
   cmd: runChakra :skip, "NoException", "samethread.baseline", ["util.js"]
 - path: ChakraCore/test/typedarray/Int8Array2.js

Modified: trunk/JSTests/ChangeLog (281155 => 281156)


--- trunk/JSTests/ChangeLog	2021-08-17 19:11:24 UTC (rev 281155)
+++ trunk/JSTests/ChangeLog	2021-08-17 19:23:23 UTC (rev 281156)
@@ -1,3 +1,10 @@
+2021-08-17  Mikhail R. Gadelha  <mikh...@igalia.com>
+
+        Unreviewed. Skip failing MIPS tests
+        https://bugs.webkit.org/show_bug.cgi?id=229198
+
+        * ChakraCore.yaml:
+
 2021-08-13  Keith Miller  <keith_mil...@apple.com>
 
         EnumeratorNextUpdatePropertyName always needs to be able to handle IndexedMode

Modified: trunk/LayoutTests/ChangeLog (281155 => 281156)


--- trunk/LayoutTests/ChangeLog	2021-08-17 19:11:24 UTC (rev 281155)
+++ trunk/LayoutTests/ChangeLog	2021-08-17 19:23:23 UTC (rev 281156)
@@ -1,3 +1,10 @@
+2021-08-17  Mikhail R. Gadelha  <mikh...@igalia.com>
+
+        Unreviewed. Skip failing MIPS tests
+        https://bugs.webkit.org/show_bug.cgi?id=229198
+
+        * platform/wpe/TestExpectations:
+
 2021-08-17  Eric Hutchison  <ehutchi...@apple.com>
 
         [Monterey wk1 Debug Intel] inspector/css/getMatchedStylesForNodeMarkerPseudoId.html is a flaky failure).

Modified: trunk/LayoutTests/platform/wpe/TestExpectations (281155 => 281156)


--- trunk/LayoutTests/platform/wpe/TestExpectations	2021-08-17 19:11:24 UTC (rev 281155)
+++ trunk/LayoutTests/platform/wpe/TestExpectations	2021-08-17 19:23:23 UTC (rev 281156)
@@ -767,6 +767,10 @@
 
 Bug(WPE) fast/dom/HTMLAnchorElement [ Skip ]
 
+Bug(WPE) fast/regex/unicodeCaseInsensitive.html [ Skip ]
+
+Bug(WPE) js/reserved-words.html [ Skip ]
+
 #////////////////////////////////////////////////////////////////////////////////////////
 # 4. TESTS CRASHING
 #////////////////////////////////////////////////////////////////////////////////////////
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to