mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-13 17:01:16 +00:00
ICU-2427 test for the bug
X-SVN-Rev: 11432
This commit is contained in:
parent
420fdec4db
commit
777eabd944
1 changed files with 5 additions and 1 deletions
|
@ -2386,7 +2386,11 @@ TestAdditionalProperties() {
|
|||
u_getIntPropertyMaxValue(UCHAR_BLOCK)!=(int32_t)UBLOCK_COUNT-1 ||
|
||||
u_getIntPropertyMaxValue(UCHAR_LINE_BREAK)!=(int32_t)U_LB_COUNT-1 ||
|
||||
u_getIntPropertyMaxValue(UCHAR_SCRIPT)!=(int32_t)USCRIPT_CODE_LIMIT-1 ||
|
||||
u_getIntPropertyMaxValue(0x2345)!=-1 /*JB#2410*/
|
||||
u_getIntPropertyMaxValue(0x2345)!=-1 /*JB#2410*/ ||
|
||||
u_getIntPropertyMaxValue(UCHAR_DECOMPOSITION_TYPE) != (int32_t) (U_DT_COUNT - 1) ||
|
||||
u_getIntPropertyMaxValue(UCHAR_JOINING_GROUP) != (int32_t) (U_JG_COUNT -1) ||
|
||||
u_getIntPropertyMaxValue(UCHAR_JOINING_TYPE) != (int32_t) (U_JT_COUNT -1) ||
|
||||
u_getIntPropertyMaxValue(UCHAR_EAST_ASIAN_WIDTH) != (int32_t) (U_EA_COUNT -1)
|
||||
) {
|
||||
log_err("error: u_getIntPropertyMaxValue() wrong\n");
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue