diff --git a/icu4c/source/test/intltest/utxttest.cpp b/icu4c/source/test/intltest/utxttest.cpp index 66eb4eedb97..0293a6ca717 100644 --- a/icu4c/source/test/intltest/utxttest.cpp +++ b/icu4c/source/test/intltest/utxttest.cpp @@ -1516,7 +1516,7 @@ void UTextTest::Ticket10983() { void UTextTest::Ticket12130() { UErrorCode status = U_ZERO_ERROR; - + const char *text8 = "Fundamentally, computers just deal with numbers. They store letters and other characters " "by assigning a number for each one. Before Unicode was invented, there were hundreds " @@ -1549,7 +1549,7 @@ void UTextTest::Ticket12130() { if (expectedni != ni) { errln("%s:%d utext_getNativeIndex() expected %d, got %d", __FILE__, __LINE__, expectedni, ni); } - if (0 != str.tempSubString(startIdx, 20).compare(extractBuffer)) { + if (0 != str.tempSubString(startIdx, 20).compare(extractBuffer)) { errln("%s:%d utext_extract() failed. expected \"%s\", got \"%s\"", __FILE__, __LINE__, CStr(str.tempSubString(startIdx, 20))(), CStr(UnicodeString(extractBuffer))()); } @@ -1558,7 +1558,7 @@ void UTextTest::Ticket12130() { // Similar utext extract, this time with the string length provided to the UText in advance, // and a buffer of larger than required capacity. - + utext_openUChars(&ut, ustr, str.length(), &status); for (int32_t startIdx = 0; startIdxstart<=index<=chunk->limit. * @return Chunk-relative UTF-16 offset corresponding to the specified native * index. @@ -1938,7 +1938,6 @@ utext_openUChar32s(UText *ut, const UChar32 *s, int64_t length, const char16_t * } - void UTextTest::AccessChangesChunkSize() { UErrorCode status = U_ZERO_ERROR; UText ut = UTEXT_INITIALIZER; @@ -1960,43 +1959,43 @@ void UTextTest::AccessChangesChunkSize() { ut.pFuncs = &textFuncs; // do test - const OffsetAndChar *testEntryPtr = testAccessEntries; - int32_t testCount = UPRV_LENGTHOF(testAccessEntries); - for (; testCount-- > 0; testEntryPtr++) { - utext_setNativeIndex(&ut, testEntryPtr->nativeOffset); - int64_t beforeOffset = utext_getNativeIndex(&ut); - UChar32 uchar = utext_current32(&ut); - int64_t afterOffset = utext_getNativeIndex(&ut); - if (uchar != testEntryPtr->expectChar || afterOffset != beforeOffset) { - errln("utext_current32 unexpected behavior for u16, test case %lld: expected char %04X at offset %lld, got %04X at %lld;\n" - "chunkNativeStart %lld chunkNativeLimit %lld nativeIndexingLimit %d chunkLength %d chunkOffset %d", - static_cast(testEntryPtr - testAccessEntries), testEntryPtr->expectChar, beforeOffset, uchar, afterOffset, - ut.chunkNativeStart, ut.chunkNativeLimit, ut.nativeIndexingLimit, ut.chunkLength, ut.chunkOffset); - } - } - utext_close(&ut); - - ut = UTEXT_INITIALIZER; - utext_openUChar32s(&ut, testAccess32Text, UPRV_LENGTHOF(testAccess32Text), testAccessText, &status); + const OffsetAndChar *testEntryPtr = testAccessEntries; + int32_t testCount = UPRV_LENGTHOF(testAccessEntries); + for (; testCount-- > 0; testEntryPtr++) { + utext_setNativeIndex(&ut, testEntryPtr->nativeOffset); + int64_t beforeOffset = utext_getNativeIndex(&ut); + UChar32 uchar = utext_current32(&ut); + int64_t afterOffset = utext_getNativeIndex(&ut); + if (uchar != testEntryPtr->expectChar || afterOffset != beforeOffset) { + errln("utext_current32 unexpected behavior for u16, test case %lld: expected char %04X at offset %lld, got %04X at %lld;\n" + "chunkNativeStart %lld chunkNativeLimit %lld nativeIndexingLimit %d chunkLength %d chunkOffset %d", + static_cast(testEntryPtr - testAccessEntries), testEntryPtr->expectChar, beforeOffset, uchar, afterOffset, + ut.chunkNativeStart, ut.chunkNativeLimit, ut.nativeIndexingLimit, ut.chunkLength, ut.chunkOffset); + } + } + utext_close(&ut); + + ut = UTEXT_INITIALIZER; + utext_openUChar32s(&ut, testAccess32Text, UPRV_LENGTHOF(testAccess32Text), testAccessText, &status); if (U_FAILURE(status)) { errln("utext_openUChar32s failed: %s", u_errorName(status)); return; } // do test - testEntryPtr = testAccess32Entries; - testCount = UPRV_LENGTHOF(testAccess32Entries); - for (; testCount-- > 0; testEntryPtr++) { - utext_setNativeIndex(&ut, testEntryPtr->nativeOffset); - int64_t beforeOffset = utext_getNativeIndex(&ut); - UChar32 uchar = utext_current32(&ut); - int64_t afterOffset = utext_getNativeIndex(&ut); - if (uchar != testEntryPtr->expectChar || afterOffset != beforeOffset) { - errln("utext_current32 unexpected behavior for u32, test case %lld: expected char %04X at offset %lld, got %04X at %lld;\n" - "chunkNativeStart %lld chunkNativeLimit %lld nativeIndexingLimit %d chunkLength %d chunkOffset %d", - static_cast(testEntryPtr - testAccess32Entries), testEntryPtr->expectChar, beforeOffset, uchar, afterOffset, - ut.chunkNativeStart, ut.chunkNativeLimit, ut.nativeIndexingLimit, ut.chunkLength, ut.chunkOffset); - } - } - utext_close(&ut); + testEntryPtr = testAccess32Entries; + testCount = UPRV_LENGTHOF(testAccess32Entries); + for (; testCount-- > 0; testEntryPtr++) { + utext_setNativeIndex(&ut, testEntryPtr->nativeOffset); + int64_t beforeOffset = utext_getNativeIndex(&ut); + UChar32 uchar = utext_current32(&ut); + int64_t afterOffset = utext_getNativeIndex(&ut); + if (uchar != testEntryPtr->expectChar || afterOffset != beforeOffset) { + errln("utext_current32 unexpected behavior for u32, test case %lld: expected char %04X at offset %lld, got %04X at %lld;\n" + "chunkNativeStart %lld chunkNativeLimit %lld nativeIndexingLimit %d chunkLength %d chunkOffset %d", + static_cast(testEntryPtr - testAccess32Entries), testEntryPtr->expectChar, beforeOffset, uchar, afterOffset, + ut.chunkNativeStart, ut.chunkNativeLimit, ut.nativeIndexingLimit, ut.chunkLength, ut.chunkOffset); + } + } + utext_close(&ut); }