Lines Matching refs:TEST_str_eq
260 if (!TEST(1, TEST_str_eq(NULL, NULL)) in test_string()
261 || !TEST(1, TEST_str_eq("abc", buf)) in test_string()
262 || !TEST(0, TEST_str_eq("abc", NULL)) in test_string()
263 || !TEST(0, TEST_str_eq("abc", "")) in test_string()
264 || !TEST(0, TEST_str_eq(NULL, buf)) in test_string()
266 || !TEST(0, TEST_str_eq("", NULL)) in test_string()
267 || !TEST(0, TEST_str_eq(NULL, "")) in test_string()
269 || !TEST(0, TEST_str_eq("\1\2\3\4\5", "\1x\3\6\5")) in test_string()
273 || !TEST(0, TEST_str_eq("abcdef", "abcdefghijk"))) in test_string()
395 return TEST(0, TEST_str_eq(p, q)) in test_long_output()
396 & TEST(0, TEST_str_eq(q, r)) in test_long_output()
397 & TEST(0, TEST_str_eq(r, s)) in test_long_output()
494 && TEST_str_eq(p = &("123456"[1]), "23456") in test_single_eval()
495 && TEST_str_eq("3456", ++p) in test_single_eval()