summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJoel Challis <git@zvecr.com>2022-10-23 04:30:17 +0100
committerGitHub <noreply@github.com>2022-10-23 04:30:17 +0100
commit64ca14feea586442516a2ec50d7335445f5f08f6 (patch)
tree8c43cf58ab30252e95a10e71fe7459e2c6c0592b /tests
parent1a1a3651d3ca6dfd8a09dd3e79498afbd54fa350 (diff)
Fix garbled test output (#18822)
* Fix garbled test output * Correct SRC listing
Diffstat (limited to 'tests')
-rw-r--r--tests/test_common/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_common/main.cpp b/tests/test_common/main.cpp
index 3e4b4c0f95..0f4e320b07 100644
--- a/tests/test_common/main.cpp
+++ b/tests/test_common/main.cpp
@@ -5,7 +5,7 @@ extern "C" {
#include "debug.h"
int8_t sendchar(uint8_t c) {
- fprintf(stderr, "%c", c);
+ fprintf(stdout, "%c", c);
return 0;
}