| 76 | |
| 77 | JEMALLOC_FORMAT_PRINTF(1, 2) |
| 78 | void |
| 79 | test_fail(const char *format, ...) { |
| 80 | va_list ap; |
| 81 | |
| 82 | va_start(ap, format); |
| 83 | malloc_vcprintf(NULL, NULL, format, ap); |
| 84 | va_end(ap); |
| 85 | malloc_printf("\n"); |
| 86 | test_status = test_status_fail; |
| 87 | } |
| 88 | |
| 89 | static const char * |
| 90 | test_status_string(test_status_t test_status) { |
no test coverage detected