tests/bsim/run_parallel: Avoid escape sequences in xml
Let's filter out escape sequences from the tests output (for ex. color escapes) as those corrupt the xml. Signed-off-by: Alberto Escolar Piedras <alberto.escolar.piedras@nordicsemi.no>
This commit is contained in:
parent
1a67e910b8
commit
c11fccdadd
1 changed files with 1 additions and 1 deletions
|
@ -69,7 +69,7 @@ echo "Attempting to run ${n_cases} cases (logging to \
|
||||||
`realpath ${RESULTS_FILE}`)"
|
`realpath ${RESULTS_FILE}`)"
|
||||||
|
|
||||||
export CLEAN_XML="sed -E -e 's/&/\&/g' -e 's/</\</g' -e 's/>/\>/g' \
|
export CLEAN_XML="sed -E -e 's/&/\&/g' -e 's/</\</g' -e 's/>/\>/g' \
|
||||||
-e 's/\"/"/g'"
|
-e 's/\"/"/g' -e $'s/\x1b\[[0-9;]*[a-zA-Z]//g'"
|
||||||
|
|
||||||
echo -n "" > $tmp_res_file
|
echo -n "" > $tmp_res_file
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue