| 180 | } |
| 181 | |
| 182 | size_t cmCTestMultiProcessHandler::GetParallelLevel() const |
| 183 | { |
| 184 | if ((this->ParallelLevel && *this->ParallelLevel == 0) || |
| 185 | (!this->ParallelLevel && this->JobServerClient)) { |
| 186 | return kParallelLevelUnbounded; |
| 187 | } |
| 188 | if (this->ParallelLevel) { |
| 189 | return *this->ParallelLevel; |
| 190 | } |
| 191 | return this->ParallelLevelDefault; |
| 192 | } |
| 193 | |
| 194 | void cmCTestMultiProcessHandler::SetTestLoad(unsigned long load) |
| 195 | { |
no outgoing calls
no test coverage detected