Skip to content

Commit

Permalink
UGH! try to address 700 timeout flake
Browse files Browse the repository at this point in the history
I just made things worse.

Signed-off-by: Ed Santiago <santiago@redhat.com>
  • Loading branch information
edsantiago committed Oct 21, 2024
1 parent 076ac2e commit 74401be
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/system/700-play.bats
Original file line number Diff line number Diff line change
Expand Up @@ -670,7 +670,7 @@ spec:
local t1=$SECONDS
local delta_t=$((t1 - t0))

if [[ $status -eq 137 ]]; then
if [[ $status -eq 137 ]] && [[ -n "$PARALLEL_JOBSLOT" ]]; then
echo "# FIXME-someday: timeout command exited $status" >&3
else
assert "$status" -eq 124 "Exit status from podman"
Expand All @@ -680,7 +680,7 @@ spec:
# parallel, allow 4 more seconds due to system load
local expect=4
if [[ -n "$PARALLEL_JOBSLOT" ]]; then
expect=$((expect + 4))
expect=$((expect + 10))
fi
# FIXME: under high load, delta_t can be 12
assert $delta_t -le $expect \
Expand Down

0 comments on commit 74401be

Please sign in to comment.