| 281 | } |
| 282 | |
| 283 | static int |
| 284 | test_kvargs(void) |
| 285 | { |
| 286 | printf("== test valid case ==\n"); |
| 287 | if (test_valid_kvargs() < 0) |
| 288 | return -1; |
| 289 | printf("== test invalid case ==\n"); |
| 290 | if (test_invalid_kvargs() < 0) |
| 291 | return -1; |
| 292 | return 0; |
| 293 | } |
| 294 | |
| 295 | REGISTER_FAST_TEST(kvargs_autotest, true, true, test_kvargs); |
nothing calls this directly
no test coverage detected