On 03/06/2025 1:42 pm, Anthony PERARD wrote: > From: Anthony PERARD <anthony.per...@vates.tech> > > Signed-off-by: Anthony PERARD <anthony.per...@vates.tech> > --- > automation/scripts/qubes-x86-64.sh | 6 ++++++ > 1 file changed, 6 insertions(+) > > diff --git a/automation/scripts/qubes-x86-64.sh > b/automation/scripts/qubes-x86-64.sh > index 7a4c5ae489..6ab8412f45 100755 > --- a/automation/scripts/qubes-x86-64.sh > +++ b/automation/scripts/qubes-x86-64.sh > @@ -298,6 +298,12 @@ TEST_RESULT=$? > > if [ -n "$retrieve_xml" ]; then > nc -w 10 "$SUT_ADDR" 8080 > tests-junit.xml </dev/null > + # Workaround duplicated data been received > + sed -i.old '/^<\/testsuites>/q' tests-junit.xml > /dev/null > + extra_line_in_junit=$(($(wc -l < tests-junit.xml.old) - $(wc -l < > tests-junit.xml))) > + if [ $extra_line_in_junit -gt 0 ]; then > + echo "WARNING: Found $extra_line_in_junit too many lines in junit." > + fi
Is this the cause of https://gitlab.com/xen-project/hardware/xen-staging/-/pipelines/1849342222/test_report getting a row of 0's for ADL ? Why are we getting duplicate data? nc is running in TCP mode, not UDP, so it's not that. ~Andrew