From 9bf0271e6d9e10de0526403b9e9b80b0570fde04 Mon Sep 17 00:00:00 2001 From: Ed Santiago Date: Wed, 8 Dec 2021 07:52:57 -0700 Subject: [PATCH] Disable stty system test It's failing pretty reliably now, so much so that gating tests will be unlikely to pass. Signed-off-by: Ed Santiago --- test/system/450-interactive.bats | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/system/450-interactive.bats b/test/system/450-interactive.bats index 47bdff9abc..d42f8497e5 100644 --- a/test/system/450-interactive.bats +++ b/test/system/450-interactive.bats @@ -49,6 +49,8 @@ function teardown() { # BEGIN tests @test "podman detects correct tty size" { + skip "FIXME: #10710. As of 2021-12-08, stty fails >75% of the time." + # Set the pty to a random size. Make rows/columns odd/even, to guarantee # that they can never be the same rows=$(( 15 + RANDOM % 60 | 1 ))