| 40 | } |
| 41 | |
| 42 | void cmCTestMemCheckCommand::ProcessAdditionalValues( |
| 43 | cmCTestGenericHandler* handler, HandlerArguments const& arguments, |
| 44 | cmExecutionStatus& status) const |
| 45 | { |
| 46 | cmMakefile& mf = status.GetMakefile(); |
| 47 | auto const& args = static_cast<MemCheckArguments const&>(arguments); |
| 48 | if (!args.DefectCount.empty()) { |
| 49 | mf.AddDefinition( |
| 50 | args.DefectCount, |
| 51 | std::to_string( |
| 52 | static_cast<cmCTestMemCheckHandler*>(handler)->GetDefectCount())); |
| 53 | } |
| 54 | } |
| 55 | |
| 56 | bool cmCTestMemCheckCommand::InitialPass(std::vector<std::string> const& args, |
| 57 | cmExecutionStatus& status) const |
nothing calls this directly
no test coverage detected