diff options
author | Valentin Rothberg <rothberg@redhat.com> | 2021-06-23 10:06:46 +0200 |
---|---|---|
committer | Valentin Rothberg <rothberg@redhat.com> | 2021-06-23 10:10:19 +0200 |
commit | d12027e0d0bb4d96e3ce963bc8eb092c4f717fe2 (patch) | |
tree | 99b2d970d0f6ca25b5d6427349a0b759e357dfa0 /test/system | |
parent | d3afc6b3b6d6ba1d900b74d24affb132f38622d3 (diff) | |
download | podman-d12027e0d0bb4d96e3ce963bc8eb092c4f717fe2.tar.gz podman-d12027e0d0bb4d96e3ce963bc8eb092c4f717fe2.tar.bz2 podman-d12027e0d0bb4d96e3ce963bc8eb092c4f717fe2.zip |
disable tty-size exec checks in system tests
As discussed in #10710, the additional checks for podman-exec added by
commit 666f555aa52b are extremely flaky and appear in nearly every PR
I have see this week.
Let's temporarily disable the checks and reenable them on #10710 is
fixed.
Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
Diffstat (limited to 'test/system')
-rw-r--r-- | test/system/450-interactive.bats | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/test/system/450-interactive.bats b/test/system/450-interactive.bats index 53925b3c8..47bdff9ab 100644 --- a/test/system/450-interactive.bats +++ b/test/system/450-interactive.bats @@ -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 } |