Lines Matching refs:result
28 int result = wcscasecmp(L"hello", L"HELLO");
29 if (result != 0) {
30 t_error("%s wcscasecmp get result is %d are not 0\n", __func__, result);
36 * @tc.desc : Test the result of calling wcscasecmp with uppercase letters, plus numbers, and lowercase letters
42 int result = wcscasecmp(L"hello1", L"HELLO2");
43 if (result >= 0) {
44 t_error("%s wcscasecmp get result is %d are more then 0\n", __func__, result);
50 * @tc.desc : Test the result of calling wcscasecmp with uppercase letters plus small numbers and lowercase
56 int result = wcscasecmp(L"hello2", L"HELLO1");
57 if (result <= 0) {
58 t_error("%s wcscasecmp get result is %d are less then 0\n", __func__, result);
64 * @tc.desc : Test the result of calling wcscasecmp for shorter uppercase wide strings versus longer lowercase
70 int result = wcscasecmp(L"hello", L"HELL");
71 if (result <= 0) {
72 t_error("%s wcscasecmp get result is %d are less then 0\n", __func__, result);
78 * @tc.desc : Test the result of calling wcscasecmp on a shorter lowercase wide string versus a longer uppercase
84 int result = wcscasecmp(L"hell", L"HELLO");
85 if (result >= 0) {
86 t_error("%s wcscasecmp get result is %d are more then 0\n", __func__, result);