Lines Matching refs:LOG
15 #define LOG(...) do {\ macro
33 LOG("Source string: '%s', to split on ':'\n", test_string); in test_rte_strsplit()
36 LOG("Error splitting mac address\n"); in test_rte_strsplit()
40 LOG("Token %d = %s\n", i + 1, splits[i]); in test_rte_strsplit()
51 LOG("Source string: '%s', to split on ' '\n", test_string); in test_rte_strsplit()
54 LOG("Error splitting mac address for max 2 splits\n"); in test_rte_strsplit()
58 LOG("Token %d = %s\n", i + 1, splits[i]); in test_rte_strsplit()
68 LOG("Source string: '%s', to split on ','\n", test_string); in test_rte_strsplit()
71 LOG("Error splitting %s on ','\n", test_string); in test_rte_strsplit()
75 LOG("Token %d = %s\n", i + 1, splits[i]); in test_rte_strsplit()
85 LOG("Source string: '%s', to split on ' '\n", test_string); in test_rte_strsplit()
88 LOG("Error splitting %s on ' '\n", test_string); in test_rte_strsplit()
91 LOG("String not split\n"); in test_rte_strsplit()
103 LOG("Error: rte_strsplit accepted NULL string parameter\n"); in test_rte_strsplit()
109 LOG("Error: rte_strsplit accepted NULL array parameter\n"); in test_rte_strsplit()
115 LOG("Error: rte_strsplit did not accept 0 length string\n"); in test_rte_strsplit()
121 LOG("Error: rte_strsplit did not accept 0 length array\n"); in test_rte_strsplit()
125 LOG("Parameter test cases passed\n"); in test_rte_strsplit()
128 LOG("%s - PASSED\n", __func__); in test_rte_strsplit()
144 LOG("dst = '%s', strlen(dst) = %zu\n", dst, strlen(dst)); in test_rte_strlcat()
145 LOG("src = '%s', strlen(src) = %zu\n", src, strlen(src)); in test_rte_strlcat()
146 LOG("---\n"); in test_rte_strlcat()
156 LOG("Incorrect retval for buf length = %zu\n", i); in test_rte_strlcat()
157 LOG("BSD: '%zu', rte: '%zu'\n", bsd_ret, rte_ret); in test_rte_strlcat()
161 LOG("Resulting buffers don't match\n"); in test_rte_strlcat()
162 LOG("BSD: '%s', rte: '%s'\n", bsd_dst, rte_dst); in test_rte_strlcat()
165 LOG("buffer size = %zu: dst = '%s', ret = %zu\n", in test_rte_strlcat()
168 LOG("Checked %zu combinations\n", i); in test_rte_strlcat()