Index: build/unittest.sh =================================================================== diff -u -r43e781768f32a69e71d87f720cf008bd22ca842f -r174ea88f0e57738cd80d68f61152d8e85d91b746 --- build/unittest.sh (.../unittest.sh) (revision 43e781768f32a69e71d87f720cf008bd22ca842f) +++ build/unittest.sh (.../unittest.sh) (revision 174ea88f0e57738cd80d68f61152d8e85d91b746) @@ -256,17 +256,17 @@ # Check if the number of failures is greater than 0 if [[ $failures -gt 0 ]] then - failedUnitTests+=("$file, Failed Cases, $failures") + failedUnitTests+=("$file,Failed_Cases,$failures") fi # Check if the number of skipped tests is greater than 0 if [[ $skipped -gt 0 ]] then - failedUnitTests+=("$file, Skipped Cases, $skipped") + failedUnitTests+=("$file,Skipped_Cases,$skipped") fi # Check if the number of blacklisted tests is greater than 0 if [[ $blackListed -gt 0 ]] then - failedUnitTests+=("$file, BlackListed Cases, $blackListed") + failedUnitTests+=("$file,BlackListed_Cases,$blackListed") fi done # If the list is not empty, the test has failed