ICU-7482 fix ASCIIsm in filetst

X-SVN-Rev: 27773
This commit is contained in:
Steven R. Loomis 2010-03-04 00:11:29 +00:00
parent a86ac09d62
commit d159b81c9f

View File

@ -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;
}