Changeset 244972 in webkit


Ignore:
Timestamp:
May 6, 2019 1:27:53 PM (5 years ago)
Author:
stephan.szabo@sony.com
Message:

[PlayStation] JSC Stress tests failing due to timezone printing
https://bugs.webkit.org/show_bug.cgi?id=197615

PlayStation's strftime does not give timezone strings, which
results in time strings like "Wed Oct 23 1974 11:45:01 GMT-0700"
rather than "Wed Oct 23 1974 11:45:01 GMT-0700 (Pacific Daylight Time)"
which causes diff failures with the expectations. Add expectations
without the timezone string and use those on playstation.

Reviewed by Ross Kirsling.

  • ChakraCore.yaml: Update these tests to use alternate expectation file on PlayStation
  • ChakraCore/test/GlobalFunctions/InternalToString.baseline-jsc-playstation: Added.
  • ChakraCore/test/Operators/equals.baseline-jsc-playstation: Added.
  • ChakraCore/test/fieldopts/objtypespec-newobj.2.baseline-jsc-playstation: Added.
Location:
trunk/JSTests
Files:
3 added
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/JSTests/ChakraCore.yaml

    r241104 r244972  
    690690      if ($hostOS == "windows")
    691691          skip
     692      elsif ($hostOS == "playstation")
     693          runChakra :baseline, "NoException", "InternalToString.baseline-jsc-playstation", []
    692694      else
    693695          runChakra :baseline, "NoException", "InternalToString.baseline", []
     
    10851087      if ($hostOS == "windows")
    10861088          skip
     1089      elsif ($hostOS == "playstation")
     1090          runChakra :baseline, "NoException", "equals.baseline-jsc-playstation", []
    10871091      else
    10881092          runChakra :baseline, "NoException", "equals.baseline", []
     
    20602064      if ($hostOS == "windows")
    20612065          skip
     2066      elsif ($hostOS == "playstation")
     2067          runChakra :baseline, "NoException", "objtypespec-newobj.2.baseline-jsc-playstation", []
    20622068      else
    20632069          runChakra :baseline, "NoException", "objtypespec-newobj.2.baseline", []
  • trunk/JSTests/ChangeLog

    r244959 r244972  
     12019-05-06  Stephan Szabo  <stephan.szabo@sony.com>
     2
     3        [PlayStation] JSC Stress tests failing due to timezone printing
     4        https://bugs.webkit.org/show_bug.cgi?id=197615
     5
     6        PlayStation's strftime does not give timezone strings, which
     7        results in time strings like "Wed Oct 23 1974 11:45:01 GMT-0700"
     8        rather than "Wed Oct 23 1974 11:45:01 GMT-0700 (Pacific Daylight Time)"
     9        which causes diff failures with the expectations. Add expectations
     10        without the timezone string and use those on playstation.
     11
     12        Reviewed by Ross Kirsling.
     13
     14        * ChakraCore.yaml: Update these tests to use alternate expectation file on PlayStation
     15        * ChakraCore/test/GlobalFunctions/InternalToString.baseline-jsc-playstation: Added.
     16        * ChakraCore/test/Operators/equals.baseline-jsc-playstation: Added.
     17        * ChakraCore/test/fieldopts/objtypespec-newobj.2.baseline-jsc-playstation: Added.
     18
    1192019-05-06  Yusuke Suzuki  <ysuzuki@apple.com>
    220
Note: See TracChangeset for help on using the changeset viewer.