test/system: log socat output in retry loop

This test is currently flaking with the latest pasta update[1]. As part
of debugging this it was hard to see why socat fails 5 times in this
loop as the run function does not log the output so I had to add an echo
here.

[1] https://bugs.passt.top/show_bug.cgi?id=202

Signed-off-by: Paul Holzinger <pholzing@redhat.com>
This commit is contained in:
Paul Holzinger
2026-05-13 14:38:03 +02:00
parent 64284222af
commit f33ef6a77f

View File

@@ -802,6 +802,7 @@ nameserver 8.8.8.8" "nameserver order is correct"
if [[ $status -eq 0 ]]; then
break
fi
echo "socat output: $output"
sleep 0.5
retries=$((retries -1))
done