Skip to content

Commit

Permalink
Merge pull request #23777 from edsantiago/socat-workaround
Browse files Browse the repository at this point in the history
CI: flake workaround: ignore socat waitpid warnings
  • Loading branch information
openshift-merge-bot[bot] authored Aug 28, 2024
2 parents 0e5eba6 + 678323e commit f013ebe
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions test/system/505-networking-pasta.bats
Original file line number Diff line number Diff line change
Expand Up @@ -252,6 +252,10 @@ function pasta_test_do() {
# Get server output, --follow is used to wait for the container to exit,
run_podman logs --follow $cname
# which should give us the expected output back.
# ...except, sigh, #23482: seems to be a bug in socat, issues spurious warning
if [[ "$recv" =~ EXEC ]]; then
output=$(grep -vE 'socat.*waitpid.*No child process' <<<"$output")
fi
assert "${output}" = "${expect}" "Mismatch between data sent and received"

run_podman rm $cname
Expand Down

0 comments on commit f013ebe

Please sign in to comment.