| 10 | class cmMakefile; |
| 11 | |
| 12 | bool cmCTestReadCustomFilesCommand::InitialPass( |
| 13 | std::vector<std::string> const& args, cmExecutionStatus& status) const |
| 14 | { |
| 15 | if (args.empty()) { |
| 16 | status.SetError("called with incorrect number of arguments"); |
| 17 | return false; |
| 18 | } |
| 19 | |
| 20 | cmMakefile& mf = status.GetMakefile(); |
| 21 | for (std::string const& arg : args) { |
| 22 | this->CTest->ReadCustomConfigurationFileTree(arg, &mf); |
| 23 | } |
| 24 | |
| 25 | return true; |
| 26 | } |
nothing calls this directly
no test coverage detected