summaryrefslogtreecommitdiff
path: root/test/e2e
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2020-06-17 14:40:05 -0400
committerGitHub <noreply@github.com>2020-06-17 14:40:05 -0400
commit5694104c24f36d8575853a48e8ba3cdbf87b8f5c (patch)
tree3f48ca90ac504d2c8ea6daf33faf194eb9cd1eb8 /test/e2e
parentd97b5b04aa9f3387ed949855c1b866713bb42b1a (diff)
parent03e99c9b40d3ad4ba33fb63d2a3de781527ce345 (diff)
downloadpodman-5694104c24f36d8575853a48e8ba3cdbf87b8f5c.tar.gz
podman-5694104c24f36d8575853a48e8ba3cdbf87b8f5c.tar.bz2
podman-5694104c24f36d8575853a48e8ba3cdbf87b8f5c.zip
Merge pull request #6644 from jgallucci32/revert-log-follow
Revert #6591 to fix issue with failed tests
Diffstat (limited to 'test/e2e')
-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))
- })
})