]> sigrok.org Git - pulseview.git/blobdiff - test/data/decoderstack.cpp
Added devices::File as a common base of file devices
[pulseview.git] / test / data / decoderstack.cpp
index d6e4f75a8a898dbbf3aea473690dcffdbbdbfb71..96f8b4a0ee4ebf6bb41200a269bf871ead274d3c 100644 (file)
 #include <libsigrokdecode/libsigrokdecode.h> /* First, so we avoid a _POSIX_C_SOURCE warning. */
 #include <boost/test/unit_test.hpp>
 
-#include <libsigrok/libsigrok.h>
+#include <libsigrokcxx/libsigrokcxx.hpp>
 
-#include "../../pv/data/decoderstack.h"
-#include "../../pv/devicemanager.h"
-#include "../../pv/sigsession.h"
-#include "../../pv/view/decodetrace.h"
+#include "../../pv/data/decoderstack.hpp"
+#include "../../pv/devicemanager.hpp"
+#include "../../pv/session.hpp"
+#include "../../pv/view/decodetrace.hpp"
 
-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