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, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
21 #include <libsigrokdecode/libsigrokdecode.h> /* First, so we avoid a _POSIX_C_SOURCE warning. */
22 #include <boost/test/unit_test.hpp>
24 #include <libsigrokcxx/libsigrokcxx.hpp>
26 #include "../../pv/data/decoderstack.hpp"
27 #include "../../pv/devicemanager.hpp"
28 #include "../../pv/session.hpp"
29 #include "../../pv/view/decodetrace.hpp"
31 using pv::data::DecoderStack;
32 using pv::data::decode::Decoder;
33 using pv::view::DecodeTrace;
34 using std::shared_ptr;
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);
47 BOOST_REQUIRE(srd_init(nullptr) == SRD_OK);
49 srd_decoder_load_all();
52 pv::DeviceManager dm(ctx);
55 const GSList *l = srd_decoder_list();
57 srd_decoder *const dec = (struct srd_decoder*)l->data;
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();
70 shared_ptr<DecoderStack> dec1 = sigs[0]->decoder();
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);
87 BOOST_AUTO_TEST_SUITE_END()