| 43 | |
| 44 | |
| 45 | int main() { |
| 46 | mi_stats_reset(); // ignore earlier allocations |
| 47 | heap_thread_free_huge(); |
| 48 | /* |
| 49 | heap_thread_free_large(); |
| 50 | heap_no_delete(); |
| 51 | heap_late_free(); |
| 52 | padding_shrink(); |
| 53 | various_tests(); |
| 54 | large_alloc(); |
| 55 | tsan_numa_test(); |
| 56 | strdup_test(); |
| 57 | */ |
| 58 | test_stl_allocators(); |
| 59 | test_mt_shutdown(); |
| 60 | |
| 61 | //fail_aslr(); |
| 62 | bench_alloc_large(); |
| 63 | mi_stats_print(NULL); |
| 64 | return 0; |
| 65 | } |
| 66 | |
| 67 | static void* p = malloc(8); |
| 68 |
nothing calls this directly
no test coverage detected