diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2019-09-12 23:08:53 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-12 23:08:53 +0200 |
commit | 1ddfc11764a18815fea3a2d91ce8314c87d8e0b7 (patch) | |
tree | f42e4f4ee98214571311e068b113610f25a89a28 | |
parent | 6ad17623d5361e1970070db667ae710fcc67fa82 (diff) | |
parent | 137ec81634b5357f1fc0fc714b470a6981fba0ba (diff) | |
download | podman-1ddfc11764a18815fea3a2d91ce8314c87d8e0b7.tar.gz podman-1ddfc11764a18815fea3a2d91ce8314c87d8e0b7.tar.bz2 podman-1ddfc11764a18815fea3a2d91ce8314c87d8e0b7.zip |
Merge pull request #3986 from debarshiray/wip/rishi/test-podman-exec-tty-onlcr
Test that PTYs created by 'podman exec --tty' have the ONLCR flag
-rw-r--r-- | test/e2e/exec_test.go | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/test/e2e/exec_test.go b/test/e2e/exec_test.go index f3190978c..670269eab 100644 --- a/test/e2e/exec_test.go +++ b/test/e2e/exec_test.go @@ -120,6 +120,18 @@ var _ = Describe("Podman exec", func() { Expect(session.ExitCode()).To(Equal(100)) }) + It("podman exec pseudo-terminal sanity check", func() { + setup := podmanTest.Podman([]string{"run", "--detach", "--name", "test1", fedoraMinimal, "sleep", "+Inf"}) + setup.WaitWithDefaultTimeout() + Expect(setup.ExitCode()).To(Equal(0)) + + session := podmanTest.Podman([]string{"exec", "--interactive", "--tty", "test1", "/usr/bin/stty", "--all"}) + session.WaitWithDefaultTimeout() + Expect(session.ExitCode()).To(Equal(0)) + match, _ := session.GrepString(" onlcr") + Expect(match).Should(BeTrue()) + }) + It("podman exec simple command with user", func() { setup := podmanTest.RunTopContainer("test1") setup.WaitWithDefaultTimeout() |