SDK: Require DDS 2.5.42 and adapt to most recent API change

This commit is contained in:
Dennis Klein 2019-08-28 20:34:38 +02:00 committed by Dennis Klein
parent 5b47df3014
commit 33b5a2a342
2 changed files with 1 additions and 2 deletions

View File

@ -84,7 +84,7 @@ if(BUILD_NANOMSG_TRANSPORT)
endif()
if(BUILD_SDK)
set(required_dds_version 2.5.36)
set(required_dds_version 2.5.42)
else()
set(required_dds_version 2.4)
endif()

View File

@ -32,7 +32,6 @@ TEST(TopologyHelper, MakeTopology)
auto nativeSession(std::make_shared<dds::tools_api::CSession>());
nativeSession->create();
EXPECT_THROW(sdk::MakeTopology(nativeTopo, nativeSession, env), sdk::RuntimeError);
nativeSession->stop();
nativeSession->shutdown();
}