| 64 | |
| 65 | JEMALLOC_FORMAT_PRINTF(1, 2) |
| 66 | void |
| 67 | test_skip(const char *format, ...) { |
| 68 | va_list ap; |
| 69 | |
| 70 | va_start(ap, format); |
| 71 | malloc_vcprintf(NULL, NULL, format, ap); |
| 72 | va_end(ap); |
| 73 | malloc_printf("\n"); |
| 74 | test_status = test_status_skip; |
| 75 | } |
| 76 | |
| 77 | JEMALLOC_FORMAT_PRINTF(1, 2) |
| 78 | void |
no test coverage detected