| 919 | } |
| 920 | |
| 921 | int cmCTestMultiProcessHandler::SearchByName(cm::string_view name) |
| 922 | { |
| 923 | int index = -1; |
| 924 | |
| 925 | for (auto const& p : this->Properties) { |
| 926 | if (p.second->Name == name) { |
| 927 | index = p.first; |
| 928 | } |
| 929 | } |
| 930 | return index; |
| 931 | } |
| 932 | |
| 933 | void cmCTestMultiProcessHandler::CreateTestCostList() |
| 934 | { |
no outgoing calls
no test coverage detected