| 443 | } |
| 444 | |
| 445 | void cmCTestMultiProcessHandler::CheckResourceAvailability() |
| 446 | { |
| 447 | if (this->UseResourceSpec) { |
| 448 | for (auto const& t : this->PendingTests) { |
| 449 | std::map<std::string, std::vector<cmCTestBinPackerAllocation>> |
| 450 | allocations; |
| 451 | this->TryAllocateResources(t.first, allocations, |
| 452 | &this->ResourceAvailabilityErrors[t.first]); |
| 453 | } |
| 454 | } |
| 455 | } |
| 456 | |
| 457 | bool cmCTestMultiProcessHandler::CheckStopOnFailure() |
| 458 | { |
no test coverage detected