| 87 | } |
| 88 | |
| 89 | static const char * |
| 90 | test_status_string(test_status_t test_status) { |
| 91 | switch (test_status) { |
| 92 | case test_status_pass: return "pass"; |
| 93 | case test_status_skip: return "skip"; |
| 94 | case test_status_fail: return "fail"; |
| 95 | default: not_reached(); |
| 96 | } |
| 97 | } |
| 98 | |
| 99 | void |
| 100 | p_test_init(const char *name) { |
no outgoing calls
no test coverage detected