From 33b5a2a34230eae53e900131e2ba250f775f8217 Mon Sep 17 00:00:00 2001 From: Dennis Klein Date: Wed, 28 Aug 2019 20:34:38 +0200 Subject: [PATCH] SDK: Require DDS 2.5.42 and adapt to most recent API change --- CMakeLists.txt | 2 +- test/sdk/_topology.cxx | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index c9301c63..9c8cd212 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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() diff --git a/test/sdk/_topology.cxx b/test/sdk/_topology.cxx index efb55c31..bbc521da 100644 --- a/test/sdk/_topology.cxx +++ b/test/sdk/_topology.cxx @@ -32,7 +32,6 @@ TEST(TopologyHelper, MakeTopology) auto nativeSession(std::make_shared()); nativeSession->create(); EXPECT_THROW(sdk::MakeTopology(nativeTopo, nativeSession, env), sdk::RuntimeError); - nativeSession->stop(); nativeSession->shutdown(); }