| 274 | }; |
| 275 | |
| 276 | TEST_P(MemtypePolicyTest, memkind_heap_mgmt) |
| 277 | { |
| 278 | HugePageOrganizer huge_page_organizer(8); |
| 279 | auto params = GetParam(); |
| 280 | auto flags = get_flags(params); |
| 281 | MemkindAllocator allocator(get_memtype(GetParam()), get_policy(GetParam()), |
| 282 | flags); |
| 283 | get_function(GetParam())(&allocator, get_size(GetParam())); |
| 284 | } |
| 285 | |
| 286 | INSTANTIATE_TEST_CASE_P(DEFAULT, |
| 287 | MemtypePolicyTest, |
nothing calls this directly
no test coverage detected