From f33ef6a77feced360fe3ed971aa26a688fb07a02 Mon Sep 17 00:00:00 2001 From: Paul Holzinger Date: Wed, 13 May 2026 14:38:03 +0200 Subject: [PATCH] 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 --- test/system/500-networking.bats | 1 + 1 file changed, 1 insertion(+) diff --git a/test/system/500-networking.bats b/test/system/500-networking.bats index f0755862e1..97e7e6275a 100644 --- a/test/system/500-networking.bats +++ b/test/system/500-networking.bats @@ -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