From 9bf0271e6d9e10de0526403b9e9b80b0570fde04 Mon Sep 17 00:00:00 2001 From: Ed Santiago Date: Wed, 8 Dec 2021 07:52:57 -0700 Subject: 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(+) (limited to 'test/system') diff --git a/test/system/450-interactive.bats b/test/system/450-interactive.bats index 47bdff9ab..d42f8497e 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 )) -- cgit v1.2.3-54-g00ecf From 921e9ecbb310a0ea65a7c0eac8432fa86fdbd903 Mon Sep 17 00:00:00 2001 From: Valentin Rothberg Date: Mon, 6 Dec 2021 15:22:55 +0100 Subject: fix remote run/start flake Fix the flake reported in #9597 with a workaround to at least stop wasting energy until the root cause has been found and fixed. It seems that a remote run returns before the container has transitioned into the `exited` state which ultimately breaks a subsequent remote start with attach. Signed-off-by: Valentin Rothberg --- test/system/035-logs.bats | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'test/system') diff --git a/test/system/035-logs.bats b/test/system/035-logs.bats index d9ec8423b..76002d362 100644 --- a/test/system/035-logs.bats +++ b/test/system/035-logs.bats @@ -91,6 +91,10 @@ ${cid[0]} d" "Sequential output from logs" function _log_test_restarted() { run_podman run --log-driver=$1 --name logtest $IMAGE sh -c 'start=0; if test -s log; then start=`tail -n 1 log`; fi; seq `expr $start + 1` `expr $start + 10` | tee -a log' + # FIXME: #9597 + # run/start is flaking for remote so let's wait for the container condition + # to stop wasting energy until the root cause gets fixed. + run_podman container wait --condition=exited logtest run_podman start -a logtest logfile=$(mktemp -p ${PODMAN_TMPDIR} logfileXXXXXXXX) $PODMAN $_PODMAN_TEST_OPTS logs -f logtest > $logfile -- cgit v1.2.3-54-g00ecf