mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-13 08:53:20 +00:00
ICU-7482 fix ASCIIsm in filetst
X-SVN-Rev: 27773
This commit is contained in:
parent
a86ac09d62
commit
d159b81c9f
1 changed files with 4 additions and 3 deletions
|
@ -1443,7 +1443,7 @@ static void TestFileWriteRetval(const char * a_pszEncoding) {
|
|||
UChar testChar = 0xBEEF;
|
||||
|
||||
if (!*a_pszEncoding || 0 == strcmp(a_pszEncoding, "ASCII")) {
|
||||
testChar = 'A'; /* otherwise read test will fail */
|
||||
testChar = 0x65; /* 'A' - otherwise read test will fail */
|
||||
}
|
||||
|
||||
buffer = (UChar*) malloc(expected * sizeof(UChar));
|
||||
|
@ -1478,8 +1478,9 @@ static void TestFileWriteRetval(const char * a_pszEncoding) {
|
|||
return;
|
||||
}
|
||||
for (count = 0; count < expected; ++count) {
|
||||
if (u_fgetc(myFile) != testChar) {
|
||||
log_err("u_fgetc returned unexpected character\n");
|
||||
UChar gotChar = u_fgetc(myFile);
|
||||
if(gotChar != testChar) {
|
||||
log_err("u_fgetc returned unexpected character U+%04X expected U+%04X\n", gotChar, testChar);
|
||||
u_fclose(myFile);
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue