Skip to content

Commit

Permalink
disable tty-size exec checks in system tests
Browse files Browse the repository at this point in the history
As discussed in containers#10710, the additional checks for podman-exec added by
commit 666f555 are extremely flaky and appear in nearly every PR
I have see this week.

Let's temporarily disable the checks and reenable them on containers#10710 is
fixed.

Signed-off-by: Valentin Rothberg <[email protected]>
  • Loading branch information
vrothberg committed Jun 23, 2021
1 parent d3afc6b commit d12027e
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions test/system/450-interactive.bats
Original file line number Diff line number Diff line change
Expand Up @@ -61,12 +61,14 @@ function teardown() {

run_podman rm -f mystty

# check that the same works for podman exec
run_podman run -d --name mystty $IMAGE top
run_podman exec -it mystty stty size <$PODMAN_TEST_PTY
is "$output" "$rows $cols" "stty under podman exec reads the correct dimensions"
# FIXME: the checks below are flaking a lot (see #10710).

run_podman rm -f mystty
# check that the same works for podman exec
# run_podman run -d --name mystty $IMAGE top
# run_podman exec -it mystty stty size <$PODMAN_TEST_PTY
# is "$output" "$rows $cols" "stty under podman exec reads the correct dimensions"
#
# run_podman rm -f mystty
}


Expand Down

0 comments on commit d12027e

Please sign in to comment.