| 173 | } |
| 174 | |
| 175 | static int |
| 176 | test_string_fns(void) |
| 177 | { |
| 178 | if (test_rte_strsplit() < 0) |
| 179 | return -1; |
| 180 | if (test_rte_strlcat() < 0) |
| 181 | return -1; |
| 182 | return 0; |
| 183 | } |
| 184 | |
| 185 | REGISTER_FAST_TEST(string_autotest, true, true, test_string_fns); |
nothing calls this directly
no test coverage detected