| 86 | } |
| 87 | |
| 88 | bool cmCTestUploadCommand::InitialPass(std::vector<std::string> const& args, |
| 89 | cmExecutionStatus& status) const |
| 90 | { |
| 91 | static auto const parser = |
| 92 | cmArgumentParser<UploadArguments>{ MakeBasicParser<UploadArguments>() } |
| 93 | .Bind("FILES"_s, &UploadArguments::Files) |
| 94 | .Bind("QUIET"_s, &UploadArguments::Quiet); |
| 95 | |
| 96 | return this->Invoke(parser, args, status, [&](UploadArguments& a) { |
| 97 | return this->ExecuteUpload(a, status); |
| 98 | }); |
| 99 | } |
nothing calls this directly
no test coverage detected