| 54 | } |
| 55 | |
| 56 | bool cmCTestMemCheckCommand::InitialPass(std::vector<std::string> const& args, |
| 57 | cmExecutionStatus& status) const |
| 58 | { |
| 59 | static auto const parser = |
| 60 | cmArgumentParser<MemCheckArguments>{ MakeTestParser<MemCheckArguments>() } |
| 61 | .Bind("DEFECT_COUNT"_s, &MemCheckArguments::DefectCount); |
| 62 | |
| 63 | return this->Invoke(parser, args, status, [&](MemCheckArguments& a) { |
| 64 | return this->ExecuteHandlerCommand(a, status); |
| 65 | }); |
| 66 | } |
nothing calls this directly
no test coverage detected