Skip to content

Commit 510509b

Browse files
Merge pull request containers#10758 from vrothberg/unflake
disable tty-size exec checks in system tests
2 parents e159eb8 + d12027e commit 510509b

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

test/system/450-interactive.bats

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -61,12 +61,14 @@ function teardown() {
6161

6262
run_podman rm -f mystty
6363

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

69-
run_podman rm -f mystty
66+
# check that the same works for podman exec
67+
# run_podman run -d --name mystty $IMAGE top
68+
# run_podman exec -it mystty stty size <$PODMAN_TEST_PTY
69+
# is "$output" "$rows $cols" "stty under podman exec reads the correct dimensions"
70+
#
71+
# run_podman rm -f mystty
7072
}
7173

7274

0 commit comments

Comments
 (0)