summaryrefslogtreecommitdiff
path: root/test/e2e/ps_test.go
diff options
context:
space:
mode:
authorbaude <bbaude@redhat.com>2018-07-30 12:15:01 -0500
committerAtomic Bot <atomic-devel@projectatomic.io>2018-07-30 23:53:08 +0000
commit5a4e5902a00fe593afc560e8ef9af1b246821f62 (patch)
treebb9429778c5e2db9a73cd1ca75fb90734176d43b /test/e2e/ps_test.go
parent8694e5414c97506302e424b36759de70008190ae (diff)
downloadpodman-5a4e5902a00fe593afc560e8ef9af1b246821f62.tar.gz
podman-5a4e5902a00fe593afc560e8ef9af1b246821f62.tar.bz2
podman-5a4e5902a00fe593afc560e8ef9af1b246821f62.zip
Integration Test Improvements #2
This is the second round of performance improvements for out integration tests. Signed-off-by: baude <bbaude@redhat.com> Closes: #1190 Approved by: rhatdan
Diffstat (limited to 'test/e2e/ps_test.go')
-rw-r--r--test/e2e/ps_test.go7
1 files changed, 2 insertions, 5 deletions
diff --git a/test/e2e/ps_test.go b/test/e2e/ps_test.go
index 7e4ec8e38..1b8002166 100644
--- a/test/e2e/ps_test.go
+++ b/test/e2e/ps_test.go
@@ -192,14 +192,11 @@ var _ = Describe("Podman ps", func() {
})
It("podman --sort by size", func() {
- // these images chosen because their size would be sorted differently alphabetically vs
- // by the size of their virtual fs
- session := podmanTest.Podman([]string{"run", "docker.io/mattdm/fedora-small", "ls"})
+ session := podmanTest.Podman([]string{"create", "busybox", "ls"})
session.WaitWithDefaultTimeout()
Expect(session.ExitCode()).To(Equal(0))
- podmanTest.RestoreArtifact(nginx)
- session = podmanTest.Podman([]string{"run", "-dt", "-P", "docker.io/library/nginx:latest"})
+ session = podmanTest.Podman([]string{"create", "-dt", ALPINE, "top"})
session.WaitWithDefaultTimeout()
Expect(session.ExitCode()).To(Equal(0))