MCPcopy Create free account
hub / github.com/ARM-software/ComputeLibrary / test_infos

Method test_infos

tests/framework/Framework.cpp:730–749  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

728}
729
730std::vector<TestInfo> Framework::test_infos() const
731{
732 std::vector<TestInfo> ids;
733
734 int id = 0;
735
736 for (const auto &factory : _test_factories)
737 {
738 const TestInfo test_info{id, factory->name(), factory->mode(), factory->status()};
739
740 if (_test_filter->is_selected(test_info))
741 {
742 ids.emplace_back(std::move(test_info));
743 }
744
745 ++id;
746 }
747
748 return ids;
749}
750
751LogLevel Framework::log_level() const
752{

Callers 1

mainFunction · 0.80

Calls 4

is_selectedMethod · 0.80
nameMethod · 0.45
modeMethod · 0.45
statusMethod · 0.45

Tested by

no test coverage detected