Carriage return generation was added back to the file handler in
a26a2e43fc4b547090f3069e121713702593261d. Since the string is actually
passed through uart_putchar twice, the received string has a duplicate
'\r' character.
tests_init(argc, argv);
static const char *expected =
- "Hey there, this should be received back\n"
- "Received: Hey there, this should be received back\n";
+ "Hey there, this should be received back\r\n"
+ "Received: Hey there, this should be received back\r\r\n";
tests_assert_uart_receive("atmega88_uart_echo.axf", 100000,
expected, '0');