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

Method RunScript

Source/CTest/cmCTestScriptHandler.cxx:324–336  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

322}
323
324bool 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}

Callers

nothing calls this directly

Calls 2

ProcessHandlerMethod · 0.45

Tested by

no test coverage detected