diff options
author | Peter Hunt <pehunt@redhat.com> | 2019-07-22 15:56:58 -0400 |
---|---|---|
committer | Peter Hunt <pehunt@redhat.com> | 2019-07-23 13:29:33 -0400 |
commit | 5bf99a82ff48cd5097182c55fe1347daf793324b (patch) | |
tree | 726fc427fba4615f2262932d71a8f9676604e3e4 /test/e2e/exec_test.go | |
parent | 479eeac62cd74e32cbe74fc8afbfc82d4d8a8abd (diff) | |
download | podman-5bf99a82ff48cd5097182c55fe1347daf793324b.tar.gz podman-5bf99a82ff48cd5097182c55fe1347daf793324b.tar.bz2 podman-5bf99a82ff48cd5097182c55fe1347daf793324b.zip |
add detach keys support for remote
Signed-off-by: Peter Hunt <pehunt@redhat.com>
Diffstat (limited to 'test/e2e/exec_test.go')
-rw-r--r-- | test/e2e/exec_test.go | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/test/e2e/exec_test.go b/test/e2e/exec_test.go index bd4fb7aad..6cf78a25c 100644 --- a/test/e2e/exec_test.go +++ b/test/e2e/exec_test.go @@ -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() |