ICU-3499 EBCDIC fix.

X-SVN-Rev: 15829
This commit is contained in:
George Rhoten 2004-06-10 17:39:52 +00:00
parent 16bd247007
commit 1a2866f6a4

View file

@ -709,7 +709,7 @@ static void U_CALLCONV TestStream(void)
ucnv_setDefaultName("UTF-8");
outTestStream << "\x42\x65\x67\x69\x6E\x6E\x69\x6E\x67\x20\x6F\x66\x20\x74\x65\x73\x74\x20";
outTestStream << str1 << "\x20\x20" << str2 << str3 << "\x31\x20" << C_NEW_LINE << str4 << ends;
outTestStream << str1 << "\x20\x20" << str2 << str3 << "\x31\x20" << UTF8_NEW_LINE << str4 << ends;
if (strcmp(testStreamBuf, testStr) != 0) {
log_err("Got: \"%s\", Expected: \"%s\"\n", testStreamBuf, testStr);
}