| 67 | } |
| 68 | |
| 69 | void test_strvec__pushl(void) |
| 70 | { |
| 71 | struct strvec vec = STRVEC_INIT; |
| 72 | |
| 73 | strvec_pushl(&vec, "foo", "bar", "baz", NULL); |
| 74 | check_strvec(&vec, "foo", "bar", "baz", NULL); |
| 75 | strvec_clear(&vec); |
| 76 | } |
| 77 | |
| 78 | void test_strvec__pushv(void) |
| 79 | { |
nothing calls this directly
no test coverage detected