unit-test-app: Fix incorrect CR+LF sequence.

This caused problems with handling output by grep, sed, etc
This commit is contained in:
Anton Maklakov 2017-06-05 10:43:13 +08:00
parent e45a288516
commit 91718cc776

View file

@ -23,8 +23,8 @@ void unity_putc(int c)
{ {
if (c == '\n') if (c == '\n')
{ {
uart_tx_one_char('\n');
uart_tx_one_char('\r'); uart_tx_one_char('\r');
uart_tx_one_char('\n');
} }
else if (c == '\r') else if (c == '\r')
{ {