the generic entry point for handling scripts, this routine will run all the scripts provides a -S arguments
| 52 | // the generic entry point for handling scripts, this routine will run all |
| 53 | // the scripts provides a -S arguments |
| 54 | int cmCTestScriptHandler::ProcessHandler() |
| 55 | { |
| 56 | int res = 0; |
| 57 | for (size_t i = 0; i < this->ConfigurationScripts.size(); ++i) { |
| 58 | // for each script run it |
| 59 | res |= this->RunConfigurationScript(this->ConfigurationScripts[i], |
| 60 | this->ScriptProcessScope[i]); |
| 61 | } |
| 62 | return res; |
| 63 | } |
| 64 | |
| 65 | void cmCTestScriptHandler::UpdateElapsedTime() |
| 66 | { |
no test coverage detected