mirror of
https://github.com/containers/podman.git
synced 2026-06-09 08:19:57 -04:00
Revert "test/e2e: fix "podman run ipcns ipcmk container test""
This reverts commit 9bd833bcfd.
With the fix for `podman rm -fa` merged, we no longer require
this patch.
Signed-off-by: Matthew Heon <matthew.heon@pm.me>
This commit is contained in:
@@ -63,7 +63,7 @@ var _ = Describe("Podman run ns", func() {
|
||||
})
|
||||
|
||||
It("podman run ipcns ipcmk container test", func() {
|
||||
setup := podmanTest.Podman([]string{"run", "-d", "--name", "test1", fedoraMinimal, "sleep", "30"})
|
||||
setup := podmanTest.Podman([]string{"run", "-d", "--name", "test1", fedoraMinimal, "sleep", "999"})
|
||||
setup.WaitWithDefaultTimeout()
|
||||
Expect(setup).Should(Exit(0))
|
||||
|
||||
@@ -72,12 +72,7 @@ var _ = Describe("Podman run ns", func() {
|
||||
Expect(session).Should(Exit(0))
|
||||
output := strings.Split(session.OutputToString(), " ")
|
||||
ipc := output[len(output)-1]
|
||||
session = podmanTest.Podman([]string{"run", "--name=t2", "--ipc=container:test1", fedoraMinimal, "ipcs", "-m", "-i", ipc})
|
||||
session.WaitWithDefaultTimeout()
|
||||
Expect(session).Should(Exit(0))
|
||||
|
||||
// We have to remove the dependency container first, rm --all fails in the cleanup because of the unknown ordering.
|
||||
session = podmanTest.Podman([]string{"rm", "t2"})
|
||||
session = podmanTest.Podman([]string{"run", "--ipc=container:test1", fedoraMinimal, "ipcs", "-m", "-i", ipc})
|
||||
session.WaitWithDefaultTimeout()
|
||||
Expect(session).Should(Exit(0))
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user