Changeset 209178 in webkit


Ignore:
Timestamp:
Dec 1, 2016 1:22:51 AM (7 years ago)
Author:
pvollan@apple.com
Message:

[Win] Skip failing JSC tests.
https://bugs.webkit.org/show_bug.cgi?id=165140

Reviewed by Mark Lam.

  • ChakraCore.yaml:
  • microbenchmarks/tan.js:
Location:
trunk/JSTests
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/JSTests/ChakraCore.yaml

    r205816 r209178  
    7676- path: ChakraCore/test/Array/toString.js
    7777  cmd: runChakra :baseline, "NoException", "toString.baseline", []
     78  # FIXME: unskip the following test on Windows when INTL is reenabled (https://bugs.webkit.org/show_bug.cgi?id=159084).
    7879- path: ChakraCore/test/Array/toLocaleString.js
    79   cmd: runChakra :baseline, "NoException", "toLocaleString.baseline-jsc", []
     80  cmd: |
     81      if ($hostOS == "windows")
     82          skip
     83      else
     84          runChakra :baseline, "NoException", "toLocaleString.baseline-jsc", []
     85      end
    8086- path: ChakraCore/test/Array/array_slice.js
    8187  cmd: runChakra :baseline, "NoException", "array_slice.baseline", []
     
    488494- path: ChakraCore/test/Date/MillisecondTruncationCheckAfterCopyConstructor.js
    489495  cmd: runChakra :baseline, "NoException", "MillisecondTruncationCheckAfterCopyConstructor.es6.baseline", []
     496  # FIXME: unskip the following test on Windows when https://bugs.webkit.org/show_bug.cgi?id=165193 is fixed.
    490497- path: ChakraCore/test/Date/date_cache_bug.js
    491   cmd: runChakra :baseline, "NoException", "date_cache_bug.baseline", []
     498  cmd: |
     499      if ($hostOS == "windows")
     500          skip
     501      else
     502          runChakra :baseline, "NoException", "date_cache_bug.baseline", []
     503      end
    492504- path: ChakraCore/test/EH/capture.js
    493505  cmd: runChakra :baseline, "NoException", "capture.baseline", []
     
    961973  # Bad test, checks hard coded exceptions.
    962974  cmd: runChakra :skip, "NoException", "", ["../UnitTestFramework/UnitTestFramework.js"]
     975  # FIXME: unskip the following test on Windows when INTL is reenabled (https://bugs.webkit.org/show_bug.cgi?id=159084).
    963976- path: ChakraCore/test/Object/toLocaleStringBasics.js
    964   cmd: runChakra :baseline, "NoException", "toLocaleStringBasics.baseline", []
     977  cmd: |
     978      if ($hostOS == "windows")
     979          skip
     980      else
     981          runChakra :baseline, "NoException", "toLocaleStringBasics.baseline", []
     982      end
    965983- path: ChakraCore/test/Object/toString1.js
    966984  cmd: runChakra :baseline, "NoException", "toString3.baseline", []
  • trunk/JSTests/ChangeLog

    r209175 r209178  
     12016-11-29  Per Arne Vollan  <pvollan@apple.com>
     2
     3        [Win] Skip failing JSC tests.
     4        https://bugs.webkit.org/show_bug.cgi?id=165140
     5
     6        Reviewed by Mark Lam.
     7
     8        * ChakraCore.yaml:
     9        * microbenchmarks/tan.js:
     10
    1112016-11-30  JF Bastien  <jfbastien@apple.com>
    212
  • trunk/JSTests/microbenchmarks/tan.js

    r205828 r209178  
    1 (function() {
     1//@ skip if $hostOS == "windows"
     2// FIXME: unskip this test when https://bugs.webkit.org/show_bug.cgi?id=165194 is fixed.
     3
     4(function () {
    25    for (var i = 0; i < 3000000; ++i)
    36        x = Math.tan(i);
Note: See TracChangeset for help on using the changeset viewer.