diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2015-10-24 16:49:16 +0100 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2015-10-25 00:38:15 +0100 |
commit | f2667ed93ae631dc90eb6935692edfad5e7edb85 (patch) | |
tree | f3e939b8c28ed3e4cb4155efe81abe6607a564f0 /p2pvr/daemon/unittests/testp2ice.cpp | |
parent | Wrap up slicer updates and DB connection access (diff) | |
download | p2pvr-f2667ed93ae631dc90eb6935692edfad5e7edb85.tar.bz2 p2pvr-f2667ed93ae631dc90eb6935692edfad5e7edb85.tar.xz p2pvr-f2667ed93ae631dc90eb6935692edfad5e7edb85.zip |
Enable hidden visibility and LTO
Diffstat (limited to 'p2pvr/daemon/unittests/testp2ice.cpp')
-rw-r--r-- | p2pvr/daemon/unittests/testp2ice.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/p2pvr/daemon/unittests/testp2ice.cpp b/p2pvr/daemon/unittests/testp2ice.cpp index dc584b6..6eece19 100644 --- a/p2pvr/daemon/unittests/testp2ice.cpp +++ b/p2pvr/daemon/unittests/testp2ice.cpp @@ -27,9 +27,8 @@ void unloadTests() { BOOST_REQUIRE_THROW(RowSetFactory::get("P2PVR-SI-GetEvent"), AdHoc::NoSuchPluginException); - // Known issue, these *should* unload, but for some reason, don't. - BOOST_WARN_THROW(StreamFactory::get("p2pvrrecordingstream"), AdHoc::NoSuchPluginException); - BOOST_WARN_THROW(StreamFactory::get("p2pvrservicestream"), AdHoc::NoSuchPluginException); + BOOST_REQUIRE_THROW(StreamFactory::get("p2pvrrecordingstream"), AdHoc::NoSuchPluginException); + BOOST_REQUIRE_THROW(StreamFactory::get("p2pvrservicestream"), AdHoc::NoSuchPluginException); } BOOST_GLOBAL_FIXTURE( TestAppInstance ); |