| 286 | // --------------------------------------------------- |
| 287 | |
| 288 | bool test_heap1() { |
| 289 | mi_heap_t* heap = mi_heap_new(); |
| 290 | int* p1 = mi_heap_malloc_tp(heap,int); |
| 291 | int* p2 = mi_heap_malloc_tp(heap,int); |
| 292 | *p1 = *p2 = 43; |
| 293 | mi_heap_destroy(heap); |
| 294 | return true; |
| 295 | } |
| 296 | |
| 297 | bool test_heap2() { |
| 298 | mi_heap_t* heap = mi_heap_new(); |
no test coverage detected