diff options
author | baude <bbaude@redhat.com> | 2018-04-13 14:26:35 -0500 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2018-04-14 13:48:35 +0000 |
commit | 62b59df053357f040d85c26727734815046e2bc3 (patch) | |
tree | dadaca27a628d9612c3a84f3d0e95a22a08a366c /test/e2e | |
parent | 9aafc25a3d5c34b89ccd1e9866fbe57b171cf001 (diff) | |
download | podman-62b59df053357f040d85c26727734815046e2bc3.tar.gz podman-62b59df053357f040d85c26727734815046e2bc3.tar.bz2 podman-62b59df053357f040d85c26727734815046e2bc3.zip |
Allow the use of -i/-a on any container
We used to not allow the use of -a/-i on containers that were not
started with -i or a tty. Given the improvements in our terminal
handling, this should work now.
This also fixes a systemic problem with the autotests.
Signed-off-by: baude <bbaude@redhat.com>
Closes: #617
Approved by: baude
Diffstat (limited to 'test/e2e')
-rw-r--r-- | test/e2e/run_restart_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/e2e/run_restart_test.go b/test/e2e/run_restart_test.go index 72a48987d..84eb69b0c 100644 --- a/test/e2e/run_restart_test.go +++ b/test/e2e/run_restart_test.go @@ -46,7 +46,7 @@ var _ = Describe("Podman run restart containers", func() { killSession.WaitWithDefaultTimeout() Expect(killSession.ExitCode()).To(Equal(0)) - session2 := podmanTest.Podman([]string{"start", "--attach", "test1"}) + session2 := podmanTest.Podman([]string{"start", "test1"}) session2.WaitWithDefaultTimeout() Expect(session2.ExitCode()).To(Equal(0)) }) |