Skip to content

Commit

Permalink
Merge pull request #213 from linbox-team/xmlcolorout
Browse files Browse the repository at this point in the history
remove colors from xml output (for the CI)
  • Loading branch information
ClementPernet authored Sep 30, 2022
2 parents 646f6ea + d61ac63 commit 0aa507b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/perfpublisher.sh
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ do
echo '[Executing]' $test
EXECUTED='yes'
EXECUTIONSTART=$($DATE +%s%3N)
EXECUTIONLOG=$(./$test 2>&1; echo 'Returned state: '$?)
EXECUTIONLOG=$(./$test 2>&1 | sed -r "s/\x1B\[([0-9]{1,3}(;[0-9]{1,2})?)?[mGK]//g"; echo 'Returned state: '$?)
EXECUTIONEND=$($DATE +%s%3N)
EXECUTIONTIME=$(($EXECUTIONEND - $EXECUTIONSTART))
EXECUTIONCHECK=$(echo $EXECUTIONLOG | grep -o '[^ ]*$')
Expand Down

0 comments on commit 0aa507b

Please sign in to comment.