summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2020-08-07 08:55:43 -0400
committerGitHub <noreply@github.com>2020-08-07 08:55:43 -0400
commit51159e7b8325ed45c279d750741e6728e7cf1036 (patch)
treef38e969a50edc8a6c03311ea7fdb3f58889edb72 /test
parent0d4a269c6dd06a48d42542d2c0980bf7a51c3493 (diff)
parent2c79f9929d2434c34205efc1603d51670ed0f763 (diff)
downloadpodman-51159e7b8325ed45c279d750741e6728e7cf1036.tar.gz
podman-51159e7b8325ed45c279d750741e6728e7cf1036.tar.bz2
podman-51159e7b8325ed45c279d750741e6728e7cf1036.zip
Merge pull request #7232 from Luap99/podman-logs-tail
fix podman logs --tail when log is bigger than pagesize
Diffstat (limited to 'test')
-rw-r--r--test/e2e/logs_test.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/e2e/logs_test.go b/test/e2e/logs_test.go
index 381336b8b..e63bce3fe 100644
--- a/test/e2e/logs_test.go
+++ b/test/e2e/logs_test.go
@@ -72,16 +72,16 @@ var _ = Describe("Podman logs", func() {
Expect(len(results.OutputToStringArray())).To(Equal(0))
})
- It("tail 99 lines", func() {
- logc := podmanTest.Podman([]string{"run", "-dt", ALPINE, "sh", "-c", "echo podman; echo podman; echo podman"})
+ It("tail 800 lines", func() {
+ logc := podmanTest.Podman([]string{"run", "-dt", ALPINE, "sh", "-c", "i=1; while [ \"$i\" -ne 1000 ]; do echo \"line $i\"; i=$((i + 1)); done"})
logc.WaitWithDefaultTimeout()
Expect(logc).To(Exit(0))
cid := logc.OutputToString()
- results := podmanTest.Podman([]string{"logs", "--tail", "99", cid})
+ results := podmanTest.Podman([]string{"logs", "--tail", "800", cid})
results.WaitWithDefaultTimeout()
Expect(results).To(Exit(0))
- Expect(len(results.OutputToStringArray())).To(Equal(3))
+ Expect(len(results.OutputToStringArray())).To(Equal(800))
})
It("tail 2 lines with timestamps", func() {