Modified: trunk/JSTests/ChakraCore.yaml (221746 => 221747)
--- trunk/JSTests/ChakraCore.yaml 2017-09-07 19:30:43 UTC (rev 221746)
+++ trunk/JSTests/ChakraCore.yaml 2017-09-07 19:31:50 UTC (rev 221747)
@@ -684,8 +684,14 @@
cmd: runChakra :baseline, "NoException", "parseInt.baseline", []
- path: ChakraCore/test/GlobalFunctions/parseShortCut.js
cmd: runChakra :baseline, "NoException", "parseShortCut.baseline", []
+ # FIXME: unskip the following test on Windows when https://bugs.webkit.org/show_bug.cgi?id=176538 is fixed.
- path: ChakraCore/test/GlobalFunctions/InternalToString.js
- cmd: runChakra :baseline, "NoException", "InternalToString.baseline", []
+ cmd: |
+ if ($hostOS == "windows")
+ skip
+ else
+ runChakra :baseline, "NoException", "InternalToString.baseline", []
+ end
- path: ChakraCore/test/GlobalFunctions/ParseInt1.js
cmd: runChakra :baseline, "NoException", "ParseInt1.baseline", []
- path: ChakraCore/test/GlobalFunctions/toString.js
@@ -1073,8 +1079,14 @@
cmd: runChakra :baseline, "NoException", "delete3.baseline", []
- path: ChakraCore/test/Operators/div.js
cmd: runChakra :baseline, "NoException", "div.baseline-jsc", []
+ # FIXME: unskip the following test on Windows when https://bugs.webkit.org/show_bug.cgi?id=176538 is fixed.
- path: ChakraCore/test/Operators/equals.js
- cmd: runChakra :baseline, "NoException", "equals.baseline", []
+ cmd: |
+ if ($hostOS == "windows")
+ skip
+ else
+ runChakra :baseline, "NoException", "equals.baseline", []
+ end
- path: ChakraCore/test/Operators/instanceof.js
cmd: runChakra :baseline, "NoException", "instanceof.baseline-jsc", []
- path: ChakraCore/test/Operators/inst_bug.js
@@ -2041,8 +2053,14 @@
cmd: runChakra :baseline, "NoException", "objtypespec-add-4.baseline", []
- path: ChakraCore/test/fieldopts/objtypespec-newobj.1.js
cmd: runChakra :baseline, "NoException", "objtypespec-newobj.1.baseline", []
+ # FIXME: unskip the following test on Windows when https://bugs.webkit.org/show_bug.cgi?id=176538 is fixed.
- path: ChakraCore/test/fieldopts/objtypespec-newobj.2.js
- cmd: runChakra :baseline, "NoException", "objtypespec-newobj.2.baseline", []
+ cmd: |
+ if ($hostOS == "windows")
+ skip
+ else
+ runChakra :baseline, "NoException", "objtypespec-newobj.2.baseline", []
+ end
- path: ChakraCore/test/fieldopts/objtypespec-newobj-invalidation.1.js
# FIXME: Re-enable once flakiness is resolved <webkit.org/b/175544>.
cmd: runChakra :skip, "NoException", "objtypespec-newobj-invalidation.1.baseline", []
Modified: trunk/JSTests/stress/date-relaxed.js (221746 => 221747)
--- trunk/JSTests/stress/date-relaxed.js 2017-09-07 19:30:43 UTC (rev 221746)
+++ trunk/JSTests/stress/date-relaxed.js 2017-09-07 19:31:50 UTC (rev 221747)
@@ -1,3 +1,6 @@
+//@ skip if $hostOS == "windows"
+// FIXME: unskip this test when https://bugs.webkit.org/show_bug.cgi?id=176538 is fixed.
+
function shouldBe(actual, expected)
{
if (actual !== expected)