mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-21 12:40:02 +00:00
ICU-45 Fix for AIX4.3
X-SVN-Rev: 569
This commit is contained in:
parent
9f7196b363
commit
afd66e1c79
1 changed files with 6 additions and 2 deletions
|
@ -1038,11 +1038,15 @@ void IntlTestTextBoundary::generalIteratorTest(BreakIterator& bi, Vector* expect
|
|||
|
||||
logln("comparing forward and backward...");
|
||||
int errs = getErrors();
|
||||
compareFragmentLists((UnicodeString)"forward iteration", (UnicodeString)"backward iteration", nextResults,
|
||||
UnicodeString str1="forward iteration";
|
||||
UnicodeString str2="backward iteration";
|
||||
compareFragmentLists(str1, str2, nextResults,
|
||||
previousResults);
|
||||
if (getErrors() == errs) {
|
||||
logln("comparing expected and actual...");
|
||||
compareFragmentLists((UnicodeString)"expected result", (UnicodeString)"actual result", expectedResult,
|
||||
str1="expected result";
|
||||
str2="actual result";
|
||||
compareFragmentLists(str1, str2, expectedResult,
|
||||
nextResults);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue