From: Uwe Hermann Date: Wed, 3 Dec 2014 23:08:09 +0000 (+0100) Subject: test: Add a dummy unit test to fix 'make test'. X-Git-Url: http://git.code-monkey.de/?p=pulseview.git;a=commitdiff_plain;h=64f4cc490877c8c542573ab494ab366a57c08cd5 test: Add a dummy unit test to fix 'make test'. This should be dropped again when the real unit tests are working again. --- diff --git a/test/data/logicsnapshot.cpp b/test/data/logicsnapshot.cpp index 3372702..9f97393 100644 --- a/test/data/logicsnapshot.cpp +++ b/test/data/logicsnapshot.cpp @@ -29,6 +29,14 @@ using pv::data::LogicSnapshot; using std::vector; +// Dummy, remove again when unit tests are fixed. +BOOST_AUTO_TEST_SUITE(DummyTestSuite) +BOOST_AUTO_TEST_CASE(DummyTestCase) +{ + BOOST_CHECK_EQUAL(1, 1); +} +BOOST_AUTO_TEST_SUITE_END() + #if 0 BOOST_AUTO_TEST_SUITE(LogicSnapshotTest)