diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-09-22 06:38:44 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-22 06:38:44 -0400 |
commit | 7910bfd7c1f93a9bac73ae855a1eb6b63aa642a2 (patch) | |
tree | 23c2790522ca0c6d8cb36c5a90e0e91600ac3b65 /test | |
parent | e9214ce81e45d227dc5017da0c252fbd601605a8 (diff) | |
parent | 5875e409e2b6244daed10c1dff929ae3b69724fa (diff) | |
download | podman-7910bfd7c1f93a9bac73ae855a1eb6b63aa642a2.tar.gz podman-7910bfd7c1f93a9bac73ae855a1eb6b63aa642a2.tar.bz2 podman-7910bfd7c1f93a9bac73ae855a1eb6b63aa642a2.zip |
Merge pull request #11659 from vrothberg/psgo
vendor c/psgo@v1.7.1
Diffstat (limited to 'test')
-rw-r--r-- | test/e2e/top_test.go | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/e2e/top_test.go b/test/e2e/top_test.go index 3cf6244b6..93c4f3f12 100644 --- a/test/e2e/top_test.go +++ b/test/e2e/top_test.go @@ -73,6 +73,12 @@ var _ = Describe("Podman top", func() { result.WaitWithDefaultTimeout() Expect(result).Should(Exit(0)) Expect(len(result.OutputToStringArray())).To(BeNumerically(">", 1)) + + // Just a smoke test since groups may change over time. + result = podmanTest.Podman([]string{"container", "top", "test", "groups", "hgroups"}) + result.WaitWithDefaultTimeout() + Expect(result).Should(Exit(0)) + Expect(len(result.OutputToStringArray())).To(BeNumerically(">", 1)) }) It("podman top with options", func() { |