mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-06 14:05:32 +00:00
ICU-2487 test for ures_openDirect with incoming warning
X-SVN-Rev: 15526
This commit is contained in:
parent
a92b8bdb8c
commit
dea3ffda73
1 changed files with 8 additions and 0 deletions
|
@ -521,6 +521,14 @@ TestOpenDirect(void) {
|
|||
log_err("ures_openDirect(\"translit_index_WronG\") succeeded, should fail!\n");
|
||||
}
|
||||
ures_close(translit_index);
|
||||
|
||||
errorCode = U_USING_FALLBACK_WARNING;;
|
||||
translit_index=ures_openDirect(NULL, "translit_index", &errorCode);
|
||||
if(U_FAILURE(errorCode)) {
|
||||
log_err("ures_openDirect(\"translit_index\") failed when U_USING_FALLBACK_WARNING was set prior to call: %s\n", u_errorName(errorCode));
|
||||
return;
|
||||
}
|
||||
ures_close(translit_index);
|
||||
}
|
||||
|
||||
static int32_t
|
||||
|
|
Loading…
Add table
Reference in a new issue