summaryrefslogtreecommitdiff
path: root/test/e2e/logs_test.go
diff options
context:
space:
mode:
authorjgallucci32 <john.gallucci.iv@gmail.com>2020-06-17 07:08:52 -0700
committerjgallucci32 <john.gallucci.iv@gmail.com>2020-06-17 08:31:09 -0700
commit03e99c9b40d3ad4ba33fb63d2a3de781527ce345 (patch)
tree55a9fc7b4cf682c854067b8d5e34b9fb4e08794a /test/e2e/logs_test.go
parent1acd2adccb357c317add19cea8f0daea328e8315 (diff)
downloadpodman-03e99c9b40d3ad4ba33fb63d2a3de781527ce345.tar.gz
podman-03e99c9b40d3ad4ba33fb63d2a3de781527ce345.tar.bz2
podman-03e99c9b40d3ad4ba33fb63d2a3de781527ce345.zip
Revert #6591 to fix issue with failed tests
Signed-off-by: jgallucci32 <john.gallucci.iv@gmail.com>
Diffstat (limited to 'test/e2e/logs_test.go')
-rw-r--r--test/e2e/logs_test.go12
1 files changed, 0 insertions, 12 deletions
diff --git a/test/e2e/logs_test.go b/test/e2e/logs_test.go
index 5d8ce24e9..c12ae9c86 100644
--- a/test/e2e/logs_test.go
+++ b/test/e2e/logs_test.go
@@ -300,16 +300,4 @@ var _ = Describe("Podman logs", func() {
Expect(inspect.ErrorToString()).To(ContainSubstring("no such container"))
}
})
-
- It("follow output stopped container", func() {
- containerName := "logs-f"
-
- logc := podmanTest.Podman([]string{"run", "--name", containerName, "-d", ALPINE})
- logc.WaitWithDefaultTimeout()
- Expect(logc).To(Exit(0))
-
- results := podmanTest.Podman([]string{"logs", "-f", containerName})
- results.WaitWithDefaultTimeout()
- Expect(results).To(Exit(0))
- })
})