| 194 | } |
| 195 | |
| 196 | test_status_t |
| 197 | p_test_no_malloc_init(test_t *t, ...) { |
| 198 | test_status_t ret; |
| 199 | va_list ap; |
| 200 | |
| 201 | ret = test_status_pass; |
| 202 | va_start(ap, t); |
| 203 | /* |
| 204 | * We also omit reentrancy from bootstrapping tests, since we don't |
| 205 | * (yet) care about general reentrancy during bootstrapping. |
| 206 | */ |
| 207 | ret = p_test_impl(false, false, t, ap); |
| 208 | va_end(ap); |
| 209 | |
| 210 | return ret; |
| 211 | } |
| 212 | |
| 213 | void |
| 214 | p_test_fail(const char *prefix, const char *message) { |
nothing calls this directly
no test coverage detected