blob: a467a047b59e6f3095d58b79f45865b296b5e974 [file] [log] [blame]
Kevin Peng62a87112020-07-07 15:07:46 +08001/*
Raef Coles8b0a7912022-01-07 11:10:33 +00002 * Copyright (c) 2017-2022, Arm Limited. All rights reserved.
Kevin Peng62a87112020-07-07 15:07:46 +08003 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 *
6 */
7
8#include "test_framework_helpers.h"
9
10#include <stdio.h>
11
Kevin Peng62a87112020-07-07 15:07:46 +080012void printf_set_color(enum serial_color_t color_id)
13{
Raef Colese1a8c9f2021-06-09 14:11:34 +010014 TEST_LOG("\33[%dm", color_id);
Kevin Peng62a87112020-07-07 15:07:46 +080015}