| 1099 | } |
| 1100 | |
| 1101 | static Json::Value DumpTimeoutAfterMatch( |
| 1102 | cmCTestTestHandler::cmCTestTestProperties& testProperties) |
| 1103 | { |
| 1104 | Json::Value timeoutAfterMatch = Json::objectValue; |
| 1105 | timeoutAfterMatch["timeout"] = testProperties.AlternateTimeout.count(); |
| 1106 | timeoutAfterMatch["regex"] = |
| 1107 | DumpRegExToJsonArray(testProperties.TimeoutRegularExpressions); |
| 1108 | return timeoutAfterMatch; |
| 1109 | } |
| 1110 | |
| 1111 | static Json::Value DumpResourceGroupsToJsonArray( |
| 1112 | std::vector< |
no test coverage detected
searching dependent graphs…