From 2ce475576781dc50ec5e2998982d19c80c305117 Mon Sep 17 00:00:00 2001 From: Daniel J Walsh Date: Mon, 23 May 2022 17:45:09 -0400 Subject: Allow podman pod create --share +pid Fixes: https://github.com/containers/podman/issues/13422 Signed-off-by: Daniel J Walsh --- test/system/200-pod.bats | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'test') diff --git a/test/system/200-pod.bats b/test/system/200-pod.bats index 4250f2680..279e3f4d7 100644 --- a/test/system/200-pod.bats +++ b/test/system/200-pod.bats @@ -335,8 +335,15 @@ EOF is "$output" ".*Invalid kernel namespace to share: bogus. Options are: cgroup, ipc, net, pid, uts or none" \ "pod test for bogus --share option" run_podman pod create --share ipc --name $pod_name + run_podman pod inspect $pod_name --format "{{.SharedNamespaces}}" + is "$output" "[ipc]" run_podman run --rm --pod $pod_name --hostname foobar $IMAGE hostname is "$output" "foobar" "--hostname should work with non share UTS namespace" + run_podman pod create --share +pid --replace --name $pod_name + run_podman pod inspect $pod_name --format "{{.SharedNamespaces}}" + for ns in uts pid ipc net; do + is "$output" ".*$ns" + done } @test "podman pod create --pod new:$POD --hostname" { -- cgit v1.2.3-54-g00ecf