commit | ca25de5aeb94795755c1a23efb919f91da81b958 | [log] [tgz] |
---|---|---|
author | Mingyang Sun <mingyang.sun@arm.com> | Thu Dec 19 15:15:17 2019 +0800 |
committer | Mingyang Sun <mingyang.sun@arm.com> | Fri Dec 27 12:49:32 2019 +0800 |
tree | 64f0a824639b0dfc5d7033b376de3a247c0ea8d0 | |
parent | e5da4ad547a35ce7072d60fedbec1f29e27e5afb [diff] [blame] |
Test: Change printf to TEST_LOG Replace all the 'printf' call to 'TEST_LOG', and use 'tfm_log_printf' instead of standard library 'printf'. Change-Id: Ie43009cf7ab35fe1fcd07500f41cf83129c37792 Signed-off-by: Mingyang Sun <mingyang.sun@arm.com>
diff --git a/test/framework/test_framework_helpers.c b/test/framework/test_framework_helpers.c index 7423325..5158c53 100644 --- a/test/framework/test_framework_helpers.c +++ b/test/framework/test_framework_helpers.c
@@ -70,5 +70,5 @@ void printf_set_color(enum serial_color_t color_id) { - printf("\33[3%dm", color_id); + TEST_LOG("\33[3%dm", color_id); }