From 3c20a81bf02902cd57c7a188555cd33359b27f27 Mon Sep 17 00:00:00 2001 From: Edward Welbourne Date: Fri, 1 Nov 2019 12:22:44 +0100 Subject: Fix failing ES test for Georgian script upper-case Unicode 11 added upper-case letters for Georgian, which didn't exist when this test was written. Consequently, the test fails now that we've updated past Unicode 11. The upstream ES test repository has commented out the test. Narrowed the test to the block on which it does work, commented on the two other characters for which it works. Fixes: QTBUG-79682 Change-Id: I8dd388317cabd62fc5d33487aeb5266d8b9b132d Reviewed-by: Lars Knoll --- tests/auto/qscriptjstestsuite/tests/ecma/String/15.5.4.12-3.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/auto/qscriptjstestsuite/tests/ecma/String/15.5.4.12-3.js b/tests/auto/qscriptjstestsuite/tests/ecma/String/15.5.4.12-3.js index d9d8bc6..364baf6 100644 --- a/tests/auto/qscriptjstestsuite/tests/ecma/String/15.5.4.12-3.js +++ b/tests/auto/qscriptjstestsuite/tests/ecma/String/15.5.4.12-3.js @@ -68,7 +68,7 @@ writeHeaderToLog( SECTION + " "+ TITLE); // Georgian // Range: U+10A0 to U+10FF -for ( var i = 0x10A0; i <= 0x10FF; i++ ) { +for ( var i = 0x10A0; i <= 0x10CF; i++ ) { // 0x10FB and 0x10FC also work var U = new Unicode( i ); /* new TestCase( SECTION, -- cgit v1.2.1