diff --git a/base/test/cv_memory_leaks_tests.cpp b/base/test/cv_memory_leaks_tests.cpp index a633ab67b..6df827824 100644 --- a/base/test/cv_memory_leaks_tests.cpp +++ b/base/test/cv_memory_leaks_tests.cpp @@ -15,8 +15,9 @@ BOOST_AUTO_TEST_CASE(cv_mat_memory_leak) cv::Mat(); } -BOOST_AUTO_TEST_CASE(cv_mat_memory_leak_2, * boost::unit_test::disabled()) +BOOST_AUTO_TEST_CASE(cv_mat_memory_leak_2, *boost::unit_test::disabled()) { + // Disabled: cv::imshow requires GUI support not available in CI auto zeros = cv::Mat::zeros(cv::Size(1920, 454), CV_8UC1); for (auto i = 0; i < 100; i++) @@ -49,8 +50,9 @@ BOOST_AUTO_TEST_CASE(cv_mat_memory_leak_4) } -BOOST_AUTO_TEST_CASE(cv_memory_leak_all, * boost::unit_test::disabled()) +BOOST_AUTO_TEST_CASE(cv_memory_leak_all, *boost::unit_test::disabled()) { + // Disabled: cv::imshow requires GUI support not available in CI cv::Mat zeros = cv::Mat::zeros(cv::Size(1920, 454), CV_8UC1); zeros = cv::Mat::zeros(cv::Size(1920, 1080), CV_8UC1); diff --git a/base/test/filereadermodule_tests.cpp b/base/test/filereadermodule_tests.cpp index 05175d272..84cefd4b3 100755 --- a/base/test/filereadermodule_tests.cpp +++ b/base/test/filereadermodule_tests.cpp @@ -241,7 +241,7 @@ BOOST_AUTO_TEST_CASE(relay) } -BOOST_AUTO_TEST_CASE(pipeline_relay, * boost::unit_test::disabled()) +BOOST_AUTO_TEST_CASE(pipeline_relay) { auto fileReader = boost::shared_ptr(new FileReaderModule(FileReaderModuleProps("./data/filenamestrategydata/?.txt"))); auto metadata = framemetadata_sp(new FrameMetadata(FrameMetadata::GENERAL)); @@ -269,7 +269,7 @@ BOOST_AUTO_TEST_CASE(pipeline_relay, * boost::unit_test::disabled()) } -BOOST_AUTO_TEST_CASE(configpipeline, * boost::unit_test::disabled()) +BOOST_AUTO_TEST_CASE(configpipeline) { std::string rootDir = "RecordingFolder/5e9ee85ba832470bc8331109"; // point to folder of jpegs auto fileReaderProps = FileReaderModuleProps(rootDir, 0, -1); @@ -507,7 +507,7 @@ BOOST_AUTO_TEST_CASE(propschange) sink->term(); } -BOOST_AUTO_TEST_CASE(pipeline_exit, * boost::unit_test::disabled()) +BOOST_AUTO_TEST_CASE(pipeline_exit) { Logger::getLogger()->setLogLevel(boost::log::trivial::severity_level::info); FileReaderModuleProps props("./data/filenamestrategydata/?.txt"); @@ -527,7 +527,7 @@ BOOST_AUTO_TEST_CASE(pipeline_exit, * boost::unit_test::disabled()) p.wait_for_all(true); } -BOOST_AUTO_TEST_CASE(pipeline_readone_exit, * boost::unit_test::disabled()) +BOOST_AUTO_TEST_CASE(pipeline_readone_exit) { Logger::getLogger()->setLogLevel(boost::log::trivial::severity_level::info); FileReaderModuleProps props("./data/filenamestrategydata/0.txt"); diff --git a/base/test/module_tests.cpp b/base/test/module_tests.cpp index b6a4217cc..ad9614676 100755 --- a/base/test/module_tests.cpp +++ b/base/test/module_tests.cpp @@ -1208,7 +1208,7 @@ BOOST_AUTO_TEST_CASE(skip_test) } } -BOOST_AUTO_TEST_CASE(stop, * boost::unit_test::disabled()) +BOOST_AUTO_TEST_CASE(stop) { class TestModule2 : public TestModule { @@ -1311,7 +1311,7 @@ BOOST_AUTO_TEST_CASE(stop, * boost::unit_test::disabled()) } } -BOOST_AUTO_TEST_CASE(stop_bug, * boost::unit_test::disabled()) +BOOST_AUTO_TEST_CASE(stop_bug) { @@ -1629,7 +1629,7 @@ BOOST_AUTO_TEST_CASE(relay) } -BOOST_AUTO_TEST_CASE(pipeline_relay, * boost::unit_test::disabled()) +BOOST_AUTO_TEST_CASE(pipeline_relay) { class TestModule2 : public TestModule { @@ -1748,7 +1748,7 @@ BOOST_AUTO_TEST_CASE(fIndex2_propagate) } -BOOST_AUTO_TEST_CASE(feedbackmodule, * boost::unit_test::disabled()) +BOOST_AUTO_TEST_CASE(feedbackmodule) { class TestSource : public Module {