license: remove FSF postal address from boiler plate license text
[pulseview.git] / test / data / decoderstack.cpp
index baeec2d6d11b69f36713d996b9991d86fc3cde07..8af1c619d320febf6dc5cb3b7ebafbf7ae84a981 100644 (file)
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
+ * along with this program; if not, see <http://www.gnu.org/licenses/>.
  */
 
 #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 pv::data::DecoderStack;
 using pv::data::decode::Decoder;
@@ -34,16 +33,17 @@ using pv::view::DecodeTrace;
 using std::shared_ptr;
 using std::vector;
 
+#if 0
 BOOST_AUTO_TEST_SUITE(DecoderStackTest)
 
 BOOST_AUTO_TEST_CASE(TwoDecoderStack)
 {
-       sr_context *ctx = NULL;
+       sr_context *ctx = nullptr;
 
        BOOST_REQUIRE(sr_init(&ctx) == SR_OK);
        BOOST_REQUIRE(ctx);
 
-       BOOST_REQUIRE(srd_init(NULL) == SRD_OK);
+       BOOST_REQUIRE(srd_init(nullptr) == SRD_OK);
 
        srd_decoder_load_all();
 
@@ -84,3 +84,4 @@ BOOST_AUTO_TEST_CASE(TwoDecoderStack)
 }
 
 BOOST_AUTO_TEST_SUITE_END()
+#endif