| 630 | Try<std::set<string>> hierarchies = cgroups::hierarchies(); |
| 631 | ASSERT_SOME(hierarchies); |
| 632 | foreach (const string& hierarchy, hierarchies.get()) { |
| 633 | if (strings::startsWith(hierarchy, TEST_CGROUPS_HIERARCHY)) { |
| 634 | AWAIT_READY(cgroups::cleanup(hierarchy)); |
| 635 | } |
| 636 | } |
| 637 | } |
| 638 | } |
| 639 |
nothing calls this directly
no test coverage detected