mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-05 05:25:34 +00:00
ICU-22707 expectedLong script names
This commit is contained in:
parent
560e4bbf41
commit
d79c7bf5a0
3 changed files with 15 additions and 2 deletions
|
@ -159,7 +159,10 @@ export UNICODE_TOOLS=~/oss/unicodetools/mine/src
|
|||
|
||||
* new constants for new property values
|
||||
- preparseucd.py error:
|
||||
ValueError: missing uchar.h enum constants for some property values: [('blk', {'Garay', 'Tulu_Tigalari', 'Todhri', 'Sunuwar', 'Egyptian_Hieroglyphs_Ext_A', 'Kirat_Rai', 'Symbols_For_Legacy_Computing_Sup', 'Myanmar_Ext_C', 'Ol_Onal', 'Gurung_Khema'}), ('sc', {'Gara', 'Onao', 'Todr', 'Krai', 'Tutg', 'Sunu', 'Gukh'}), ('InSC', {'Reordering_Killer'})]
|
||||
ValueError: missing uchar.h enum constants for some property values:
|
||||
[('blk', {'Garay', 'Tulu_Tigalari', 'Todhri', 'Sunuwar', 'Egyptian_Hieroglyphs_Ext_A', 'Kirat_Rai', 'Symbols_For_Legacy_Computing_Sup', 'Myanmar_Ext_C', 'Ol_Onal', 'Gurung_Khema'}),
|
||||
('sc', {'Gara', 'Onao', 'Todr', 'Krai', 'Tutg', 'Sunu', 'Gukh'}),
|
||||
('InSC', {'Reordering_Killer'})]
|
||||
= PropertyValueAliases.txt new property values (diff old & new .txt files)
|
||||
(cd $UNIDATA_ROOT && diff -u uni15.1/final/ucd/PropertyValueAliases.txt uni16/alpha/UCD/ucd/PropertyValueAliases.txt | egrep '^[-+][a-zA-Z]')
|
||||
+age; 16.0 ; V16_0
|
||||
|
@ -195,7 +198,7 @@ export UNICODE_TOOLS=~/oss/unicodetools/mine/src
|
|||
+ Indic_Syllabic_Category: uchar.h & UCharacter.IndicSyllabicCategory
|
||||
+ after adding new API constants, run preparseucd.py again
|
||||
|
||||
TODO
|
||||
TODO: need to update CLDR script metadata first
|
||||
|
||||
* update Script metadata: SCRIPT_PROPS[] in uscript_props.cpp & UScript.ScriptMetadata
|
||||
(not strictly necessary for NOT_ENCODED scripts)
|
||||
|
@ -216,6 +219,8 @@ to find out the latest `bazel` version, and
|
|||
copying that version number into the $ICU_SRC/.bazeliskrc config file.
|
||||
(Revert if you find incompatibilities, or, better, update our build & config files.)
|
||||
|
||||
TODO
|
||||
|
||||
* generate data files
|
||||
|
||||
- remember to define the environment variables
|
||||
|
|
|
@ -433,6 +433,8 @@ void TestUScriptCodeAPI(void){
|
|||
"Kawi", "Nag_Mundari",
|
||||
// new in ICU 75
|
||||
"Aran",
|
||||
// new in ICU 76
|
||||
"Garay", "Gurung_Khema", "Kirat_Rai", "Ol_Onal", "Sunuwar", "Todhri", "Tulu_Tigalari",
|
||||
};
|
||||
static const char* expectedShort[] = {
|
||||
"Bali", "Batk", "Blis", "Brah", "Cham", "Cirt", "Cyrs", "Egyd", "Egyh", "Egyp",
|
||||
|
@ -475,6 +477,8 @@ void TestUScriptCodeAPI(void){
|
|||
"Kawi", "Nagm",
|
||||
// new in ICU 75
|
||||
"Aran",
|
||||
// new in ICU 76
|
||||
"Gara", "Gukh", "Krai", "Onao", "Sunu", "Todr", "Tutg",
|
||||
};
|
||||
int32_t j = 0;
|
||||
if(UPRV_LENGTHOF(expectedLong)!=(USCRIPT_CODE_LIMIT-USCRIPT_BALINESE)) {
|
||||
|
|
|
@ -339,6 +339,8 @@ public class TestUScript extends CoreTestFmwk {
|
|||
"Kawi", "Nag_Mundari",
|
||||
// new in ICU 75
|
||||
"Aran",
|
||||
// new in ICU 76
|
||||
"Garay", "Gurung_Khema", "Kirat_Rai", "Ol_Onal", "Sunuwar", "Todhri", "Tulu_Tigalari",
|
||||
};
|
||||
String[] expectedShort = new String[]{
|
||||
"Bali", "Batk", "Blis", "Brah", "Cham", "Cirt", "Cyrs", "Egyd", "Egyh", "Egyp",
|
||||
|
@ -381,6 +383,8 @@ public class TestUScript extends CoreTestFmwk {
|
|||
"Kawi", "Nagm",
|
||||
// new in ICU 75
|
||||
"Aran",
|
||||
// new in ICU 76
|
||||
"Gara", "Gukh", "Krai", "Onao", "Sunu", "Todr", "Tutg",
|
||||
};
|
||||
if(expectedLong.length!=(UScript.CODE_LIMIT-UScript.BALINESE)) {
|
||||
errln("need to add new script codes in lang.TestUScript.java!");
|
||||
|
|
Loading…
Add table
Reference in a new issue