Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Cgroup V1 block IO integration test #537

Merged
merged 4 commits into from
Dec 18, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions crates/integration_test/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ fn main() -> Result<()> {
let cgroup_v2_cpu = cgroups::cpu::v2::get_test_group();
let cgroup_v1_memory = cgroups::memory::get_test_group();
let cgroup_v1_network = cgroups::network::get_test_group();
let cgroup_v1_blkio = cgroups::blkio::get_test_group();
let seccomp_notify = get_seccomp_notify_test();

tm.add_test_group(&cl);
Expand All @@ -88,6 +89,7 @@ fn main() -> Result<()> {
tm.add_test_group(&cgroup_v2_cpu);
tm.add_test_group(&cgroup_v1_memory);
tm.add_test_group(&cgroup_v1_network);
tm.add_test_group(&cgroup_v1_blkio);
tm.add_test_group(&seccomp_notify);

tm.add_cleanup(Box::new(cgroups::cleanup_v1));
Expand Down
Loading