| 62 | }; |
| 63 | |
| 64 | TEST_F(MemkindPmemLongTimeStress, DISABLED_test_TC_MEMKIND_PmemStressSmallSize) |
| 65 | { |
| 66 | void *test = nullptr; |
| 67 | TimerSysTime timer; |
| 68 | timer.start(); |
| 69 | |
| 70 | do { |
| 71 | for (size_t i = 0; i < ARRAY_SIZE(small_size); i++) { |
| 72 | test = memkind_malloc(pmem_kind, small_size[i]); |
| 73 | ASSERT_TRUE(test != nullptr); |
| 74 | memkind_free(pmem_kind, test); |
| 75 | } |
| 76 | } while (timer.getElapsedTime() < STRESS_TIME); |
| 77 | } |
| 78 | |
| 79 | TEST_F(MemkindPmemLongTimeStress, DISABLED_test_TC_MEMKIND_PmemStressLargeSize) |
| 80 | { |
nothing calls this directly
no test coverage detected