From c8d34213e548ac20af36c0b2e2fa555b7e6e6cb4 Mon Sep 17 00:00:00 2001 From: "Vinogradov, Sergei" Date: Wed, 6 Nov 2024 12:20:08 +0100 Subject: [PATCH] Enable umfIpcTest for OS provider with scalable pool --- test/provider_os_memory.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/test/provider_os_memory.cpp b/test/provider_os_memory.cpp index 5b647b642..77ca7c896 100644 --- a/test/provider_os_memory.cpp +++ b/test/provider_os_memory.cpp @@ -14,6 +14,9 @@ #ifdef UMF_POOL_JEMALLOC_ENABLED #include #endif +#ifdef UMF_POOL_SCALABLE_ENABLED +#include +#endif using umf_test::test; @@ -470,6 +473,11 @@ static std::vector ipcTestParamsList = { createOsMemoryProviderParamsShared, destroyOsMemoryProviderParamsShared, &hostAccessor}, #endif +#ifdef UMF_POOL_SCALABLE_ENABLED + {umfScalablePoolOps(), nullptr, nullptr, umfOsMemoryProviderOps(), + createOsMemoryProviderParamsShared, destroyOsMemoryProviderParamsShared, + &hostAccessor}, +#endif }; INSTANTIATE_TEST_SUITE_P(osProviderTest, umfIpcTest,