summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorValentin Rothberg <rothberg@redhat.com>2021-06-23 10:06:46 +0200
committerMatthew Heon <mheon@redhat.com>2021-06-24 13:50:29 -0400
commit6c4ee8535f587f5fd237c2f4a58132ddd2894c84 (patch)
treec56e556a3f023a4206ce80b6df3c6d1ef6d505a9 /test
parent6ba9617be69fe5c525b62db0af55d72205f8e5a1 (diff)
downloadpodman-6c4ee8535f587f5fd237c2f4a58132ddd2894c84.tar.gz
podman-6c4ee8535f587f5fd237c2f4a58132ddd2894c84.tar.bz2
podman-6c4ee8535f587f5fd237c2f4a58132ddd2894c84.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')
-rw-r--r--test/system/450-interactive.bats12
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
}