Skip to content

Commit

Permalink
experimenting with breaklines
Browse files Browse the repository at this point in the history
  • Loading branch information
jandrlik committed Feb 27, 2024
1 parent d6ab110 commit f883649
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion testHeadlessComponents.sh
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,12 @@ let "TESTS = $FAILED + $PASSED + $IGNORED"

XMLREPORT=$TMPRESULTS/testHeadlessComponent.jtr.xml
printXmlHeader $PASSED $FAILED $TESTS $IGNORED "testHeadlessComponent" > $XMLREPORT
cat "$BODY_FILE" >> $XMLREPORT
while IFS= read -r LINE; do
printf "%s\n" "$LINE" >> "$XMLREPORT"
done < $BODY_FILE


#cat "$BODY_FILE" >> $XMLREPORT
printXmlFooter >> $XMLREPORT
ls -la $XMLREPORT

Expand Down

0 comments on commit f883649

Please sign in to comment.