ICU-5576 Fixes for z/OS

X-SVN-Rev: 21320
This commit is contained in:
George Rhoten 2007-03-27 15:25:56 +00:00
parent 94947773b1
commit 9c3f0aabd0

View file

@ -1366,8 +1366,9 @@ openFragmentedUnicodeString(UText *ut, UnicodeString *s, UErrorCode *status) {
// 4. Check that clone contents did not change.
//
void UTextTest::Ticket5560() {
const char *s1 = "ABCDEF";
const char *s2 = "123456";
/* The following two strings are in UTF-8 even on EBCDIC platforms. */
static const char s1[] = {0x41,0x42,0x43,0x44,0x45,0x46,0}; /* "ABCDEF" */
static const char s2[] = {0x31,0x32,0x33,0x34,0x35,0x36,0}; /* "123456" */
UErrorCode status = U_ZERO_ERROR;
UText ut1 = UTEXT_INITIALIZER;