add detach keys support for remote

Signed-off-by: Peter Hunt <pehunt@redhat.com>
This commit is contained in:
Peter Hunt
2019-07-22 15:56:58 -04:00
parent 479eeac62c
commit 5bf99a82ff
5 changed files with 17 additions and 10 deletions

View File

@ -77,8 +77,6 @@ var _ = Describe("Podman exec", func() {
})
It("podman exec environment test", func() {
// passing environment variables is not supported in the remote client
SkipIfRemote()
setup := podmanTest.RunTopContainer("test1")
setup.WaitWithDefaultTimeout()
Expect(setup.ExitCode()).To(Equal(0))
@ -110,8 +108,8 @@ var _ = Describe("Podman exec", func() {
match, _ := session.GrepString("BAR")
Expect(match).Should(BeTrue())
os.Unsetenv("FOO")
})
It("podman exec exit code", func() {
setup := podmanTest.RunTopContainer("test1")
setup.WaitWithDefaultTimeout()