Update context_ipc_gtest.cpp to use IPCbackend

This commit is contained in:
avinashkethineedi
2024-08-15 11:54:56 -07:00
والد b68867ee17
کامیت c9dbcf80c2
3فایلهای تغییر یافته به همراه4 افزوده شده و 6 حذف شده
@@ -88,7 +88,7 @@ target_sources(
notifier_gtest.cpp
#forward_list_gtest.cpp
free_list_gtest.cpp
context_ipc_gtest.cpp
#context_ipc_gtest.cpp
ipc_impl_simple_coarse_gtest.cpp
)
@@ -25,8 +25,8 @@
#include "gtest/gtest.h"
#include "../src/ipc/context_ipc.hpp"
#include "../src/reverse_offload/backend_ro.hpp"
#include "../src/ipc/context_ipc_device.hpp"
#include "../src/ipc/backend_ipc.hpp"
namespace rocshmem {
@@ -36,7 +36,7 @@ class ContextIpcTestFixture : public ::testing::Test
/**
* @brief Context Ipc Test
*/
ROBackend be{MPI_COMM_WORLD};
IPCBackend be{MPI_COMM_WORLD};
IPCContext ipc_context_ {&be};
};