| 188 | |
| 189 | |
| 190 | static void negative_stat(void) { |
| 191 | int* p = mi_malloc(60000); |
| 192 | mi_stats_print_out(NULL, NULL); |
| 193 | *p = 100; |
| 194 | mi_free(p); |
| 195 | mi_stats_print_out(NULL, NULL); |
| 196 | } |
| 197 | |
| 198 | static void alloc_huge(void) { |
| 199 | void* p = mi_malloc(67108872); |
nothing calls this directly
no test coverage detected