diff options
author | Marvin Borner | 2021-02-10 22:37:09 +0100 |
---|---|---|
committer | Marvin Borner | 2021-02-10 22:37:09 +0100 |
commit | 802dbd9134b0902e1072ef35b443e150e11facc3 (patch) | |
tree | 7ed1681ad01c28ba0a8d5370a2396c8ede6d171b | |
parent | a56a16c9cf526080e5f10aa576079cc0e6b01962 (diff) |
Fixed test script
-rw-r--r-- | apps/test.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/test.c b/apps/test.c index 101c215..c448ceb 100644 --- a/apps/test.c +++ b/apps/test.c @@ -93,9 +93,9 @@ int main() test_mem(); if (failed) - printf("%d tests failed\n", failed); + log("%d tests failed\n", failed); else - print("All tests passed\n"); + log("All tests passed\n"); // Try emulator shutdown outw(0xB004, 0x2000); |