blob: 909b0d9d5140f591080d5aed4d86d271f2a1a58c [file] [edit]
#!/usr/bin/env bats
load helpers
function setup() {
requires root
setup_debian
}
function teardown() {
teardown_bundle
}
@test "runc run [rootfsPropagation shared]" {
update_config ' .linux.rootfsPropagation = "shared" '
update_config ' .process.args = ["findmnt", "--noheadings", "-o", "PROPAGATION", "/"] '
runc run test_shared_rootfs
[ "$status" -eq 0 ]
[ "$output" = "shared" ]
}