Fix remaining invalid disconnect() calls
[pulseview.git] / test / data / decoderstack.cpp
blob3bb2f3eb310d52f525845142cd52baf51e109a8a
1 /*
2 * This file is part of the PulseView project.
4 * Copyright (C) 2013 Joel Holdsworth <joel@airwebreathe.org.uk>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
20 #if 0
22 #include <libsigrokdecode/libsigrokdecode.h> /* First, so we avoid a _POSIX_C_SOURCE warning. */
23 #include <boost/test/unit_test.hpp>
25 #include <libsigrokcxx/libsigrokcxx.hpp>
27 #include "../../pv/data/decoderstack.hpp"
28 #include "../../pv/devicemanager.hpp"
29 #include "../../pv/session.hpp"
30 #include "../../pv/view/decodetrace.hpp"
32 using pv::data::DecoderStack;
33 using pv::data::decode::Decoder;
34 using pv::view::DecodeTrace;
35 using std::shared_ptr;
36 using std::vector;
38 BOOST_AUTO_TEST_SUITE(DecoderStackTest)
40 BOOST_AUTO_TEST_CASE(TwoDecoderStack)
42 sr_context *ctx = nullptr;
44 BOOST_REQUIRE(sr_init(&ctx) == SR_OK);
45 BOOST_REQUIRE(ctx);
47 BOOST_REQUIRE(srd_init(nullptr) == SRD_OK);
49 srd_decoder_load_all();
52 pv::DeviceManager dm(ctx);
53 pv::Session ss(dm);
55 const GSList *l = srd_decoder_list();
56 BOOST_REQUIRE(l);
57 srd_decoder *const dec = (struct srd_decoder*)l->data;
58 BOOST_REQUIRE(dec);
60 ss.add_decoder(dec);
61 ss.add_decoder(dec);
63 // Check the signals were created
64 const vector< shared_ptr<DecodeTrace> > sigs =
65 ss.get_decode_signals();
67 shared_ptr<DecoderStack> dec0 = sigs[0]->decoder();
68 BOOST_REQUIRE(dec0);
70 shared_ptr<DecoderStack> dec1 = sigs[0]->decoder();
71 BOOST_REQUIRE(dec1);
73 // Wait for the decode threads to complete
74 dec0->decode_thread_.join();
75 dec1->decode_thread_.join();
77 // Check there were no errors
78 BOOST_CHECK_EQUAL(dec0->error_message().isEmpty(), true);
79 BOOST_CHECK_EQUAL(dec1->error_message().isEmpty(), true);
83 srd_exit();
84 sr_exit(ctx);
87 BOOST_AUTO_TEST_SUITE_END()
88 #endif