| 181 | } |
| 182 | |
| 183 | test_status_t |
| 184 | p_test_no_reentrancy(test_t *t, ...) { |
| 185 | test_status_t ret; |
| 186 | va_list ap; |
| 187 | |
| 188 | ret = test_status_pass; |
| 189 | va_start(ap, t); |
| 190 | ret = p_test_impl(true, false, t, ap); |
| 191 | va_end(ap); |
| 192 | |
| 193 | return ret; |
| 194 | } |
| 195 | |
| 196 | test_status_t |
| 197 | p_test_no_malloc_init(test_t *t, ...) { |
nothing calls this directly
no test coverage detected