From fcea6fda82cc3809f8990c0c80a52f6c4a03c5cd Mon Sep 17 00:00:00 2001 From: Giuseppe Scrivano Date: Fri, 12 Apr 2019 14:26:39 +0200 Subject: pull: exit with error if the image is not found Closes: https://github.com/containers/libpod/issues/2785 Signed-off-by: Giuseppe Scrivano --- test/e2e/pull_test.go | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'test/e2e') diff --git a/test/e2e/pull_test.go b/test/e2e/pull_test.go index de6d4ea09..4e4e80d56 100644 --- a/test/e2e/pull_test.go +++ b/test/e2e/pull_test.go @@ -38,6 +38,12 @@ var _ = Describe("Podman pull", func() { }) + It("podman pull from docker a not existing image", func() { + session := podmanTest.Podman([]string{"pull", "ibetthisdoesntexistthere:foo"}) + session.WaitWithDefaultTimeout() + Expect(session.ExitCode()).To(Not(Equal(0))) + }) + It("podman pull from docker with tag", func() { session := podmanTest.Podman([]string{"pull", "busybox:glibc"}) session.WaitWithDefaultTimeout() -- cgit v1.2.3-54-g00ecf