diff options
author | Valentin Rothberg <rothberg@redhat.com> | 2021-11-30 17:39:05 +0100 |
---|---|---|
committer | Valentin Rothberg <rothberg@redhat.com> | 2021-12-01 11:42:37 +0100 |
commit | e2b344728cb0869d14eb165496a5c436cd9fb650 (patch) | |
tree | 2e0ec9e7531bdf3776045b4a88ce8f2de34b9024 /test | |
parent | 8de68b170716dd1293c5a044f3e9cfd962fdbfb1 (diff) | |
download | podman-e2b344728cb0869d14eb165496a5c436cd9fb650.tar.gz podman-e2b344728cb0869d14eb165496a5c436cd9fb650.tar.bz2 podman-e2b344728cb0869d14eb165496a5c436cd9fb650.zip |
top: parse ps(1) args correctly
The arguments of ps(1) should be shlexed.
Fixes: #12452
Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
Diffstat (limited to 'test')
-rw-r--r-- | test/e2e/top_test.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/e2e/top_test.go b/test/e2e/top_test.go index 93c4f3f12..1a71ebf33 100644 --- a/test/e2e/top_test.go +++ b/test/e2e/top_test.go @@ -101,6 +101,11 @@ var _ = Describe("Podman top", func() { result.WaitWithDefaultTimeout() Expect(result).Should(Exit(0)) Expect(len(result.OutputToStringArray())).To(BeNumerically(">", 1)) + + result = podmanTest.Podman([]string{"top", session.OutputToString(), "ax -o args"}) + result.WaitWithDefaultTimeout() + Expect(result).Should(Exit(0)) + Expect(result.OutputToStringArray()).To(Equal([]string{"COMMAND", "top -d 2"})) }) It("podman top with comma-separated options", func() { |