Changeset 233674 in webkit


Ignore:
Timestamp:
Jul 9, 2018 6:18:39 PM (6 years ago)
Author:
msaboff@apple.com
Message:

REGRESSION (ICU-62100.0.1): JSC test mozilla-tests.yaml/ecma/String/15.5.4.12-3.js is failing
https://bugs.webkit.org/show_bug.cgi?id=187495

Reviewed by Saam Barati.

Commented out the Georgian section of this toUpper() test since Unicode 11 added new upper case characters for
most of this range.

  • mozilla/ecma/String/15.5.4.12-3.js:

(getTestCases):
(DecimalToHexString):

Location:
trunk/JSTests
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/JSTests/ChangeLog

    r233451 r233674  
     12018-07-09  Michael Saboff  <msaboff@apple.com>
     2
     3        REGRESSION (ICU-62100.0.1): JSC test mozilla-tests.yaml/ecma/String/15.5.4.12-3.js is failing
     4        https://bugs.webkit.org/show_bug.cgi?id=187495
     5
     6        Reviewed by Saam Barati.
     7
     8        Commented out the Georgian section of this toUpper() test since Unicode 11 added new upper case characters for
     9        most of this range.
     10
     11        * mozilla/ecma/String/15.5.4.12-3.js:
     12        (getTestCases):
     13        (DecimalToHexString):
     14
    1152018-07-02  Sukolsak Sakshuwong  <sukolsak@gmail.com>
    216
  • trunk/JSTests/mozilla/ecma/String/15.5.4.12-3.js

    r11995 r233674  
    5555    var item = 0;
    5656
     57    /*
     58     * Unicode 11.0 added special uppercase values for U+10A0..U+10FA & U+10FD..U+10FF and thus toUpper()
     59     * support for the Georgian range.  It doesn't make sense to make the test adaptive based on what version of
     60     * Unicode is installed.  The simplest thing to do is not test this range.
    5761    // Georgian
    5862    // Range: U+10A0 to U+10FF
    5963    for ( var i = 0x10A0; i <= 0x10FF; i++ ) {
    6064        var U = new Unicode( i );
    61 /*
    6265        array[item++] = new TestCase(   SECTION,
    6366                                        "var s = new String( String.fromCharCode("+i+") ); s.toUpperCase()",
    6467                                        String.fromCharCode(U.upper),
    6568                                        eval("var s = new String( String.fromCharCode("+i+") ); s.toUpperCase()") );
    66 */
    6769        array[item++] = new TestCase(   SECTION,
    6870                                        "var s = new String( String.fromCharCode("+i+") ); s.toUpperCase().charCodeAt(0)",
     
    7173
    7274    }
     75    */
    7376
    7477    // Halfwidth and Fullwidth Forms
Note: See TracChangeset for help on using the changeset viewer.