MCPcopy Create free account
hub / github.com/Kitware/CMake / InitialPass

Method InitialPass

Source/CTest/cmCTestUploadCommand.cxx:88–99  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

86}
87
88bool 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}

Callers

nothing calls this directly

Calls 3

ExecuteUploadMethod · 0.95
InvokeMethod · 0.80
BindMethod · 0.45

Tested by

no test coverage detected