• Home
  • Raw
  • Download

Lines Matching refs:log_err

56         log_err("uprv_tolower(abc) failed\n");  in TestAPI()
63 log_err("uprv_tolower(ABC) failed\n"); in TestAPI()
70 log_err("uprv_toupper(abc) failed\n"); in TestAPI()
77 log_err("uprv_toupper(ABC) failed\n"); in TestAPI()
83log_err("FAIL: *** T_CString_toLowerCase() failed. Expected: \"hello there\", Got: \"%s\"\n", src); in TestAPI()
87log_err("FAIL: *** T_CString_toUpperCase() failed. Expected: \"HELLO THERE\", Got: \"%s\"\n", src); in TestAPI()
92log_err("FAIL: ****T_CString_stringToInteger(\"34556\", 10) failed. Expected: 34556, Got: %d\n", i… in TestAPI()
96log_err("FAIL: ****T_CString_stringToInteger(\"100\", 16) failed. Expected: 256, Got: %d\n", intVa… in TestAPI()
100log_err("FAIL: ****integerToString(src, 34566, 10); failed. Expected: \"34556\", Got: %s\n", src); in TestAPI()
104log_err("FAIL: ****integerToString(src, 431, 16); failed. Expected: \"1AF\", Got: %s\n", src); in TestAPI()
108 log_err("FAIL: ****integerToString(src, 9223372036854775807, 10); failed. Got: %s\n", src); in TestAPI()
112 log_err("FAIL: ****integerToString(src, 7FFFFFFFFFFFFFFF, 16); failed. Got: %s\n", src); in TestAPI()
117 log_err("FAIL: *****uprv_stricmp() failed."); in TestAPI()
120log_err("FAIL: uprv_stricmp() where the first string is null failed. Expected: -1, returned %d\n",… in TestAPI()
123log_err("FAIL: uprv_stricmp() where the second string is null failed. Expected: 1, returned %d\n",… in TestAPI()
126 log_err("FAIL: uprv_stricmp(NULL, NULL) failed. Expected: 0, returned %d\n", intValue); in TestAPI()
129 log_err("FAIL: uprv_stricmp(\"\", \"\") failed. Expected: 0, returned %d\n", intValue); in TestAPI()
132 log_err("FAIL: uprv_stricmp(\"\", \"abc\") failed. Expected: -1, returned %d\n", intValue); in TestAPI()
135 log_err("FAIL: uprv_stricmp(\"abc\", \"\") failed. Expected: 1, returned %d\n", intValue); in TestAPI()
140 log_err("FAIL: uprv_strdup() failed. Expected: \"strdup\", Got: %s\n", temp); in TestAPI()
146 log_err("FAIL: *****uprv_strnicmp() failed."); in TestAPI()
149log_err("FAIL: uprv_strnicmp() where the first string is null failed. Expected: -1, returned %d\n"… in TestAPI()
152log_err("FAIL: uprv_strnicmp() where the second string is null failed. Expected: 1, returned %d\n"… in TestAPI()
155log_err("FAIL: uprv_strnicmp(NULL, NULL, 10) failed. Expected: 0, returned %d\n", intValue); in TestAPI()
158 log_err("FAIL: uprv_strnicmp(\"\", \"\") failed. Expected: 0, returned %d\n", intValue); in TestAPI()
161log_err("FAIL: uprv_stricmp(\"\", \"abc\", 10) failed. Expected: -1, returned %d\n", intValue); in TestAPI()
164log_err("FAIL: uprv_strnicmp(\"abc\", \"\", 10) failed. Expected: 1, returned %d\n", intValue); in TestAPI()
205 log_err("u_charsToUChars(invariantChars) failed\n"); in TestInvariant()
210 log_err("u_UCharsToChars(invariantUChars) failed\n"); in TestInvariant()
221 log_err("u_charsToUChars(variantChars) failed\n"); in TestInvariant()
232log_err("u_UCharsToChars(variantUChars) converted the %d-th character to %02x instead of 00\n", i,… in TestInvariant()
248 log_err("unable to open the default converter\n"); in TestInvariant()
252 log_err("ucnv_fromUChars(invariantUChars) failed - %s\n", u_errorName(errorCode)); in TestInvariant()
254 log_err("ucnv_fromUChars(invariantUChars) failed\n"); in TestInvariant()
260 log_err("ucnv_toUChars(invariantChars) failed - %s\n", u_errorName(errorCode)); in TestInvariant()
262 log_err("ucnv_toUChars(invariantChars) failed\n"); in TestInvariant()
271 log_err("uprv_isInvariantString(invariantChars) failed\n"); in TestInvariant()
274 log_err("uprv_isInvariantUString(invariantUChars) failed\n"); in TestInvariant()
277 log_err("uprv_isInvariantString(\"\\0\") failed\n"); in TestInvariant()
282 log_err("uprv_isInvariantString(variantChars[%d]) failed\n", i); in TestInvariant()
285 log_err("uprv_isInvariantUString(variantUChars[%d]) failed\n", i); in TestInvariant()
291 log_err("uprv_isInvariantUString(nonASCIIUChars[%d]) failed\n", i); in TestInvariant()
337 log_err("uprv_compareInvEbcdicAsAscii(%s, %s)=%hd is wrong\n", in TestCompareInvEbcdicAsAscii()
343 log_err("uprv_compareInvEbcdicAsAscii(%s, %s)=%hd is wrong\n", in TestCompareInvEbcdicAsAscii()
368 log_err("uprv_isAtSign('%c')=%d is wrong\n", ic, (int)actual); in TestLocaleAtSign()
380 log_err("uprv_isAtSign(invariant '%c')=TRUE is wrong\n", ic); in TestNoInvariantAtSign()
393 log_err("uprv_invCharToAscii('%c') did not convert to ASCII 0x%02x\n", ic, (int)ac); in TestInvCharToAscii()