Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions test/provider_os_memory.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@
#ifdef UMF_POOL_JEMALLOC_ENABLED
#include <umf/pools/pool_jemalloc.h>
#endif
#ifdef UMF_POOL_SCALABLE_ENABLED
#include <umf/pools/pool_scalable.h>
#endif

using umf_test::test;

Expand Down Expand Up @@ -470,6 +473,11 @@ static std::vector<ipcTestParams> ipcTestParamsList = {
createOsMemoryProviderParamsShared, destroyOsMemoryProviderParamsShared,
&hostAccessor},
#endif
#ifdef UMF_POOL_SCALABLE_ENABLED
{umfScalablePoolOps(), nullptr, nullptr, umfOsMemoryProviderOps(),
createOsMemoryProviderParamsShared, destroyOsMemoryProviderParamsShared,
&hostAccessor},
#endif
};

INSTANTIATE_TEST_SUITE_P(osProviderTest, umfIpcTest,
Expand Down
Loading