| 168 | } |
| 169 | |
| 170 | test_status_t |
| 171 | p_test(test_t *t, ...) { |
| 172 | test_status_t ret; |
| 173 | va_list ap; |
| 174 | |
| 175 | ret = test_status_pass; |
| 176 | va_start(ap, t); |
| 177 | ret = p_test_impl(true, true, t, ap); |
| 178 | va_end(ap); |
| 179 | |
| 180 | return ret; |
| 181 | } |
| 182 | |
| 183 | test_status_t |
| 184 | p_test_no_reentrancy(test_t *t, ...) { |
nothing calls this directly
no test coverage detected