summaryrefslogtreecommitdiff
path: root/test/e2e/start_test.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2022-08-09 06:13:10 +0000
committerGitHub <noreply@github.com>2022-08-09 06:13:10 +0000
commit7992d86ab3f69f5c3b4872a4fecbc340579ba78d (patch)
tree26d90695ab4b7c34b65c6094ef343a135d5a7e56 /test/e2e/start_test.go
parent28607a9238b30be9e2b6dd6476f410eed5314ae9 (diff)
parent2685c8dc43ff3443e30185345627760c9b94efa3 (diff)
downloadpodman-7992d86ab3f69f5c3b4872a4fecbc340579ba78d.tar.gz
podman-7992d86ab3f69f5c3b4872a4fecbc340579ba78d.tar.bz2
podman-7992d86ab3f69f5c3b4872a4fecbc340579ba78d.zip
Merge pull request #15134 from sstosh/improve-output
Output messages display rawInput
Diffstat (limited to 'test/e2e/start_test.go')
-rw-r--r--test/e2e/start_test.go20
1 files changed, 0 insertions, 20 deletions
diff --git a/test/e2e/start_test.go b/test/e2e/start_test.go
index 736008ed3..f3e8cc015 100644
--- a/test/e2e/start_test.go
+++ b/test/e2e/start_test.go
@@ -100,23 +100,6 @@ var _ = Describe("Podman start", func() {
Expect(session.OutputToString()).To(Equal(shortID))
})
- It("podman container start single container by short id", func() {
- session := podmanTest.Podman([]string{"container", "create", ALPINE, "ls"})
- session.WaitWithDefaultTimeout()
- Expect(session).Should(Exit(0))
- cid := session.OutputToString()
- shortID := cid[0:10]
- session = podmanTest.Podman([]string{"container", "start", shortID})
- session.WaitWithDefaultTimeout()
- Expect(session).Should(Exit(0))
- Expect(session.OutputToString()).To(Equal(shortID))
-
- session = podmanTest.Podman([]string{"stop", shortID})
- session.WaitWithDefaultTimeout()
- Expect(session).Should(Exit(0))
- Expect(session.OutputToString()).To(Equal(shortID))
- })
-
It("podman start single container by name", func() {
name := "foobar99"
session := podmanTest.Podman([]string{"create", "--name", name, ALPINE, "ls"})
@@ -125,9 +108,6 @@ var _ = Describe("Podman start", func() {
session = podmanTest.Podman([]string{"start", name})
session.WaitWithDefaultTimeout()
Expect(session).Should(Exit(0))
- if podmanTest.RemoteTest {
- Skip("Container-start name check doesn't work on remote client. It always returns the full ID.")
- }
Expect(session.OutputToString()).To(Equal(name))
})