X-Git-Url: http://git.code-monkey.de/?p=pulseview.git;a=blobdiff_plain;f=test%2Fdata%2Fdecoderstack.cpp;h=1bfbfc1cf6369014428ab824c8b648811e6555e0;hp=d6e4f75a8a898dbbf3aea473690dcffdbbdbfb71;hb=48ecc1fcd47fd239ae525634bc1a9d2e7a46ac0e;hpb=819f4c25391a9c74d3d2f528d462142d5c4aad4d diff --git a/test/data/decoderstack.cpp b/test/data/decoderstack.cpp index d6e4f75..1bfbfc1 100644 --- a/test/data/decoderstack.cpp +++ b/test/data/decoderstack.cpp @@ -28,12 +28,13 @@ #include "../../pv/sigsession.h" #include "../../pv/view/decodetrace.h" -using boost::shared_ptr; using pv::data::DecoderStack; using pv::data::decode::Decoder; using pv::view::DecodeTrace; +using std::shared_ptr; using std::vector; +#if 0 BOOST_AUTO_TEST_SUITE(DecoderStackTest) BOOST_AUTO_TEST_CASE(TwoDecoderStack) @@ -49,7 +50,7 @@ BOOST_AUTO_TEST_CASE(TwoDecoderStack) { pv::DeviceManager dm(ctx); - pv::SigSession ss(dm); + pv::Session ss(dm); const GSList *l = srd_decoder_list(); BOOST_REQUIRE(l); @@ -70,8 +71,8 @@ BOOST_AUTO_TEST_CASE(TwoDecoderStack) BOOST_REQUIRE(dec1); // Wait for the decode threads to complete - dec0->_decode_thread.join(); - dec1->_decode_thread.join(); + dec0->decode_thread_.join(); + dec1->decode_thread_.join(); // Check there were no errors BOOST_CHECK_EQUAL(dec0->error_message().isEmpty(), true); @@ -84,3 +85,4 @@ BOOST_AUTO_TEST_CASE(TwoDecoderStack) } BOOST_AUTO_TEST_SUITE_END() +#endif