ICU-4678 Use u_fprintf instead of printf

X-SVN-Rev: 21658
This commit is contained in:
George Rhoten 2007-06-07 00:58:02 +00:00
parent debbc013c6
commit 31d17573e7

View File

@ -1,7 +1,7 @@
/*
*******************************************************************************
*
* Copyright (C) 2002-2005, International Business Machines
* Copyright (C) 2002-2007, International Business Machines
* Corporation and others. All Rights Reserved.
*
*******************************************************************************
@ -53,7 +53,7 @@ void Test::TestUChariter() {
u_fprintf(out, "testText = %s", testChars);
if (iter != *test2 ) {
printf("clone() or equals() failed: Two clones tested unequal\n");
u_fprintf(out, "clone() or equals() failed: Two clones tested unequal\n");
}
UnicodeString result1, result2;
@ -61,7 +61,7 @@ void Test::TestUChariter() {
iter.getText(result1);
test2->getText(result2);
if (result1 != result2) {
printf("iter.getText() != clone.getText()\n");
u_fprintf(out, "iter.getText() != clone.getText()\n");
}
u_fprintf(out, "\n");
@ -74,23 +74,23 @@ void Test::TestUChariter() {
int32_t i = 0;
if (iter.startIndex() != 0 || iter.endIndex() != u_strlen(testText)) {
printf("startIndex() or endIndex() failed\n");
u_fprintf(out, "startIndex() or endIndex() failed\n");
}
// Testing forward iteration...
do {
if (c == CharacterIterator::DONE && i != u_strlen(testText)) {
printf("Iterator reached end prematurely");
u_fprintf(out, "Iterator reached end prematurely");
}
else if (c != testText[i]) {
printf("Character mismatch at position %d\n" + i);
u_fprintf(out, "Character mismatch at position %d\n" + i);
}
if (iter.current() != c) {
printf("current() isn't working right");
u_fprintf(out, "current() isn't working right");
}
if (iter.getIndex() != i) {
printf("getIndex() isn't working right\n");
u_fprintf(out, "getIndex() isn't working right\n");
}
if (c != CharacterIterator::DONE) {
c = iter.next();
@ -118,7 +118,7 @@ void Test::TestStringiter() {
StringCharacterIterator* test2 = (StringCharacterIterator*)iter.clone();
if (iter != *test2 ) {
printf("clone() or equals() failed: Two clones tested unequal\n");
u_fprintf(out, "clone() or equals() failed: Two clones tested unequal\n");
}
UnicodeString result1, result2;
@ -126,7 +126,7 @@ void Test::TestStringiter() {
iter.getText(result1);
test2->getText(result2);
if (result1 != result2) {
printf("getText() failed\n");
u_fprintf(out, "getText() failed\n");
}
u_fprintf(out, "Backwards: ");
@ -138,22 +138,22 @@ void Test::TestStringiter() {
i--; // already printed out the last char
if (iter.startIndex() != 0 || iter.endIndex() != u_strlen(testText)) {
printf("startIndex() or endIndex() failed\n");
u_fprintf(out, "startIndex() or endIndex() failed\n");
}
// Testing backward iteration over a range...
do {
if (c == CharacterIterator::DONE) {
printf("Iterator reached end prematurely\n");
u_fprintf(out, "Iterator reached end prematurely\n");
}
else if (c != testText[i]) {
printf("Character mismatch at position %d\n" + i);
u_fprintf(out, "Character mismatch at position %d\n", i);
}
if (iter.current() != c) {
printf("current() isn't working right\n");
u_fprintf(out, "current() isn't working right\n");
}
if (iter.getIndex() != i) {
printf("getIndex() isn't working right [%d should be %d]\n", iter.getIndex(), i);
u_fprintf(out, "getIndex() isn't working right [%d should be %d]\n", iter.getIndex(), i);
}
if (c != CharacterIterator::DONE) {
c = iter.previous();