diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-06-23 08:39:57 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-23 08:39:57 -0400 |
commit | 510509bafcdd055b4a6819ed300db7292c6fb6b8 (patch) | |
tree | 52a1a85bbaa2b0ba54f7febe3c0ad49a5d8de390 /test/system | |
parent | e159eb892b969a035f6f34239369771536ff4a9b (diff) | |
parent | d12027e0d0bb4d96e3ce963bc8eb092c4f717fe2 (diff) | |
download | podman-510509bafcdd055b4a6819ed300db7292c6fb6b8.tar.gz podman-510509bafcdd055b4a6819ed300db7292c6fb6b8.tar.bz2 podman-510509bafcdd055b4a6819ed300db7292c6fb6b8.zip |
Merge pull request #10758 from vrothberg/unflake
disable tty-size exec checks in system tests
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 } |