mirror of https://github.com/containers/podman.git
fix CI: test fail due to merge
containers/podman/pull/17186 and containers/podman/pull/17201 have been merged at roughly the same time. Both work fine in isolation but the new kube test breaks in combination. Fix the IPC kube test to make CI healthy. Signed-off-by: Valentin Rothberg <vrothberg@redhat.com>
This commit is contained in:
parent
49b809a0cc
commit
a745d99a88
|
@ -4989,7 +4989,7 @@ spec:
|
|||
inspect := podmanTest.Podman([]string{"inspect", "test-hostipc-alpine", "--format", "{{ .HostConfig.IpcMode }}"})
|
||||
inspect.WaitWithDefaultTimeout()
|
||||
Expect(inspect).Should(Exit(0))
|
||||
Expect(inspect.OutputToString()).To(Equal("shareable"))
|
||||
Expect(inspect.OutputToString()).To(Equal("host"))
|
||||
|
||||
cmd := exec.Command("ls", "-l", "/proc/self/ns/ipc")
|
||||
res, err := cmd.Output()
|
||||
|
|
Loading…
Reference in New Issue