diff options
author | Matthew Heon <mheon@redhat.com> | 2021-07-12 17:17:47 -0400 |
---|---|---|
committer | Matthew Heon <mheon@redhat.com> | 2021-07-13 16:26:53 -0400 |
commit | cbbb1a80f5ccbbec5496f253cabce0f65df0f656 (patch) | |
tree | c82b917962d0cbee84d3f9a988cb67bd9a8d1faf /test/system | |
parent | 31c3b952e5da7eb11a32464a0cd74856265efec5 (diff) | |
download | podman-cbbb1a80f5ccbbec5496f253cabce0f65df0f656.tar.gz podman-cbbb1a80f5ccbbec5496f253cabce0f65df0f656.tar.bz2 podman-cbbb1a80f5ccbbec5496f253cabce0f65df0f656.zip |
Perform a one-sided close of HTTP attach conn on EOF
On EOF of STDIN, we need to perform a one-sided close of the
attach connection on the client side, to ensure that STDIN
finishing will also cause the exec session to terminate, instead
of hang.
Fixes #7360
Signed-off-by: Matthew Heon <mheon@redhat.com>
Diffstat (limited to 'test/system')
-rw-r--r-- | test/system/075-exec.bats | 2 | ||||
-rw-r--r-- | test/system/500-networking.bats | 1 |
2 files changed, 0 insertions, 3 deletions
diff --git a/test/system/075-exec.bats b/test/system/075-exec.bats index badf44c49..3e8c3c1ea 100644 --- a/test/system/075-exec.bats +++ b/test/system/075-exec.bats @@ -59,8 +59,6 @@ load helpers # Issue #4785 - piping to exec statement - fixed in #4818 # Issue #5046 - piping to exec truncates results (actually a conmon issue) @test "podman exec - cat from stdin" { - skip_if_remote "FIXME: pending #7360" - run_podman run -d $IMAGE sh -c 'while [ ! -e /stop ]; do sleep 0.1;done' cid="$output" diff --git a/test/system/500-networking.bats b/test/system/500-networking.bats index d55a786f7..4feb57807 100644 --- a/test/system/500-networking.bats +++ b/test/system/500-networking.bats @@ -20,7 +20,6 @@ load helpers # Copied from tsweeney's https://github.com/containers/podman/issues/4827 @test "podman networking: port on localhost" { - skip_if_remote "FIXME: reevaluate this one after #7360 is fixed" random_1=$(random_string 30) random_2=$(random_string 30) |