Lines Matching refs:libc_retval
20 const char *libc_retval; in test_errno() local
41 libc_retval = strerror(std_errs[i]); in test_errno()
43 rte_retval, libc_retval); in test_errno()
44 if (strcmp(rte_retval, libc_retval) != 0) in test_errno()
52 libc_retval = strerror(rte_errs[i]); in test_errno()
54 rte_retval, libc_retval); in test_errno()
55 if (strcmp(rte_retval, libc_retval) == 0) in test_errno()
62 if ((strcmp(expected_libc_retval, libc_retval) != 0) && in test_errno()
63 (strcmp("", libc_retval) != 0)){ in test_errno()
71 libc_retval = strerror(RTE_MAX_ERRNO + 1); in test_errno()
75 rte_retval, libc_retval); in test_errno()
76 if ((strcmp(rte_retval, libc_retval) != 0) || in test_errno()
77 (strcmp(expected_libc_retval, libc_retval) != 0)){ in test_errno()
78 if (strcmp("", libc_retval) != 0){ in test_errno()