mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-05 21:45:37 +00:00
ICU-5576 Fixes for z/OS
X-SVN-Rev: 21320
This commit is contained in:
parent
94947773b1
commit
9c3f0aabd0
1 changed files with 3 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue