summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorValentin Rothberg <rothberg@redhat.com>2021-12-06 15:22:55 +0100
committerEd Santiago <santiago@redhat.com>2021-12-08 07:54:18 -0700
commit921e9ecbb310a0ea65a7c0eac8432fa86fdbd903 (patch)
tree8aeef090d03d139578a51a0cc038da2a797cc2f3 /test
parent9bf0271e6d9e10de0526403b9e9b80b0570fde04 (diff)
downloadpodman-921e9ecbb310a0ea65a7c0eac8432fa86fdbd903.tar.gz
podman-921e9ecbb310a0ea65a7c0eac8432fa86fdbd903.tar.bz2
podman-921e9ecbb310a0ea65a7c0eac8432fa86fdbd903.zip
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 <rothberg@redhat.com>
Diffstat (limited to 'test')
-rw-r--r--test/system/035-logs.bats4
1 files changed, 4 insertions, 0 deletions
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