From 2a7df50a73be06ff94f9c0ac32633b39fd072794 Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Wed, 13 Dec 2023 16:37:42 +0100 Subject: libtest: Set test printer in rtems_test_run() Route the test output through T_vprintf(). --- cpukit/libtest/testrun.c | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) (limited to 'cpukit/libtest') diff --git a/cpukit/libtest/testrun.c b/cpukit/libtest/testrun.c index 0d392e4581..1fc8c82824 100644 --- a/cpukit/libtest/testrun.c +++ b/cpukit/libtest/testrun.c @@ -3,13 +3,13 @@ /** * @file * - * @ingroup RTEMSAPI + * @ingroup RTEMSTest * - * @brief Implementation of rtems_test_run_default(). + * @brief This source file provides the implementation of rtems_test_run(). */ /* - * Copyright (C) 2020 embedded brains GmbH & Co. KG + * Copyright (C) 2020, 2023 embedded brains GmbH & Co. KG * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -38,6 +38,7 @@ #endif #include +#include #include #include @@ -73,6 +74,12 @@ static const T_config config = { .actions = actions }; +static int printer(void *context, const char *fmt, va_list ap) +{ + (void) context; + return T_vprintf(fmt, ap); +} + void rtems_test_run( rtems_task_argument arg, const RTEMS_TEST_STATE state @@ -80,6 +87,7 @@ void rtems_test_run( { (void) arg; + rtems_test_printer.printer = printer; rtems_test_begin( rtems_test_name, state ); T_register(); -- cgit v1.2.3