| 484 | } |
| 485 | |
| 486 | bool cmCTestMultiProcessHandler::ResourceLocksAvailable(int test) |
| 487 | { |
| 488 | return std::all_of(this->Properties[test]->ProjectResources.begin(), |
| 489 | this->Properties[test]->ProjectResources.end(), |
| 490 | [this](std::string const& r) -> bool { |
| 491 | return !cm::contains(this->ProjectResourcesLocked, r); |
| 492 | }); |
| 493 | } |
| 494 | |
| 495 | void cmCTestMultiProcessHandler::LockResources(int index) |
| 496 | { |
no test coverage detected