Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions base/test/cv_memory_leaks_tests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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++)
Expand Down Expand Up @@ -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);

Expand Down
8 changes: 4 additions & 4 deletions base/test/filereadermodule_tests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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<FileReaderModule>(new FileReaderModule(FileReaderModuleProps("./data/filenamestrategydata/?.txt")));
auto metadata = framemetadata_sp(new FrameMetadata(FrameMetadata::GENERAL));
Expand Down Expand Up @@ -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);
Expand Down Expand Up @@ -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");
Expand All @@ -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");
Expand Down
8 changes: 4 additions & 4 deletions base/test/module_tests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
Expand Down Expand Up @@ -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)
{


Expand Down Expand Up @@ -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
{
Expand Down Expand Up @@ -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
{
Expand Down
Loading