Home | History | Annotate | Download | only in cintltst

Lines Matching refs:T_CString_stricmp

110     if(T_CString_stricmp(src, "THIS is lower CASE") != 0){
111 log_err("FAIL: *****T_CString_stricmp() failed.");
113 if((intValue=T_CString_stricmp(NULL, "first string is null") )!= -1){
114 log_err("FAIL: T_CString_stricmp() where the first string is null failed. Expected: -1, returned %d\n", intValue);
116 if((intValue=T_CString_stricmp("second string is null", NULL)) != 1){
117 log_err("FAIL: T_CString_stricmp() where the second string is null failed. Expected: 1, returned %d\n", intValue);
119 if((intValue=T_CString_stricmp(NULL, NULL)) != 0){
120 log_err("FAIL: T_CString_stricmp(NULL, NULL) failed. Expected: 0, returned %d\n", intValue);;
122 if((intValue=T_CString_stricmp("", "")) != 0){
123 log_err("FAIL: T_CString_stricmp(\"\", \"\") failed. Expected: 0, returned %d\n", intValue);;
125 if((intValue=T_CString_stricmp("", "abc")) != -1){
126 log_err("FAIL: T_CString_stricmp(\"\", \"abc\") failed. Expected: -1, returned %d\n", intValue);
128 if((intValue=T_CString_stricmp("abc", "")) != 1){
129 log_err("FAIL: T_CString_stricmp(\"abc\", \"\") failed. Expected: 1, returned %d\n", intValue);
155 log_err("FAIL: T_CString_stricmp(\"\", \"abc\", 10) failed. Expected: -1, returned %d\n", intValue);