ICU-10821 UCD 7.0 final data

X-SVN-Rev: 35850
This commit is contained in:
Markus Scherer 2014-06-10 17:40:02 +00:00
parent c30ffd9852
commit 2d4d56185f
6 changed files with 3992 additions and 730 deletions

View File

@ -1281,7 +1281,7 @@ public final class UScript {
0x1980 | LIMITED_USE | LB_LETTERS, // Talu
0x2D30 | ASPIRATIONAL, // Tfng
0x103A0 | EXCLUSION, // Xpeo
0x1B05 | LIMITED_USE | LB_LETTERS, // Bali
0x1B05 | LIMITED_USE, // Bali
0x1BC0 | LIMITED_USE, // Batk
0,
0x11005 | EXCLUSION, // Brah
@ -1297,7 +1297,7 @@ public final class UScript {
0x16B1C | EXCLUSION, // Hmng
0,
0,
0xA984 | LIMITED_USE | LB_LETTERS, // Java
0xA984 | LIMITED_USE, // Java
0xA90A | LIMITED_USE, // Kali
0,
0,

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:d6e2fe33019c48baf942615316a507f18ee8f8205db24f21dfa55a693f7d5a35
size 10500183
oid sha256:ba61a15f14acdc6a323524db85c2e5990dc15b20c04fcb170bbb9a5517864099
size 10503185

View File

@ -399,7 +399,7 @@ public class TestUScript extends TestFmwk {
!scripts.get(UScript.ARABIC)) {
errln("UScript.getScriptExtensions(U+063F) is not {ARABIC}");
}
if(UScript.getScriptExtensions(0x0640, scripts)!=-3 || scripts.cardinality()!=3 ||
if(UScript.getScriptExtensions(0x0640, scripts)>-3 || scripts.cardinality()<3 ||
!scripts.get(UScript.ARABIC) || !scripts.get(UScript.SYRIAC) || !scripts.get(UScript.MANDAIC)
) {
errln("UScript.getScriptExtensions(U+0640) failed");

View File

@ -1,7 +1,7 @@
/*
*******************************************************************************
* Copyright (C) 2009-2014, International Business Machines Corporation and *
* others. All Rights Reserved. *
* Copyright (C) 2009-2014, International Business Machines Corporation and
* others. All Rights Reserved.
*******************************************************************************
*/
package com.ibm.icu.dev.test.text;
@ -578,8 +578,8 @@ public class SpoofCheckerTest extends TestFmwk {
{"アaー〆", "HIGHLY_RESTRICTIVE", "[]", "Latn Kana", "", ""},
{"a1١", "UNRESTRICTIVE", "[0٠]", "Latn", "Arab Thaa", "Arab Thaa"},
{"a1١۱", "UNRESTRICTIVE", "[0٠۰]", "Latn Arab", "", ""},
{"١ー〆aア1१۱", "UNRESTRICTIVE", "[0٠۰]", "Latn Kana Arab", "Deva Kthi", "Deva Kthi"},
{"aアー〆1१١۱", "UNRESTRICTIVE", "[0٠۰]", "Latn Kana Arab", "Deva Kthi", "Deva Kthi"},
{"١ー〆aア1१۱", "UNRESTRICTIVE", "[0٠۰]", "Latn Kana Arab", "Deva Kthi Mahj", "Deva Kthi Mahj"},
{"aアー〆1१١۱", "UNRESTRICTIVE", "[0٠۰]", "Latn Kana Arab", "Deva Kthi Mahj", "Deva Kthi Mahj"},
};
for (String[] test : tests) {
String testString = test[0];