| 322 | } |
| 323 | |
| 324 | bool cmCTestScriptHandler::RunScript(cmCTest* ctest, cmMakefile* mf, |
| 325 | std::string const& sname, bool InProcess, |
| 326 | int* returnValue) |
| 327 | { |
| 328 | auto sh = cm::make_unique<cmCTestScriptHandler>(ctest); |
| 329 | sh->ParentMakefile = mf; |
| 330 | sh->AddConfigurationScript(sname, InProcess); |
| 331 | int res = sh->ProcessHandler(); |
| 332 | if (returnValue) { |
| 333 | *returnValue = res; |
| 334 | } |
| 335 | return true; |
| 336 | } |
nothing calls this directly
no test coverage detected