From 6fe01e4b3d52b47c916bc4989e042255ff38e2ca Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Mon, 14 Jan 2019 09:08:18 +0100 Subject: build: Move test support to librtemstest.a One reason to move the test support into a dedicated library are the standard output __wrap_*() functions. They may conflict with application level wrappers. Update #3199. --- cpukit/libtest/testextension.c | 74 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 74 insertions(+) create mode 100644 cpukit/libtest/testextension.c (limited to 'cpukit/libtest/testextension.c') diff --git a/cpukit/libtest/testextension.c b/cpukit/libtest/testextension.c new file mode 100644 index 0000000000..be4759742e --- /dev/null +++ b/cpukit/libtest/testextension.c @@ -0,0 +1,74 @@ +/* + * Copyright (c) 2014 embedded brains GmbH. All rights reserved. + * + * embedded brains GmbH + * Dornierstr. 4 + * 82178 Puchheim + * Germany + * + * + * The license and distribution terms for this file may be + * found in the file LICENSE in this distribution or at + * http://www.rtems.org/license/LICENSE. + */ + +#ifdef HAVE_CONFIG_H + #include "config.h" +#endif + +#include +#include +#include + +#if defined(RTEMS_PROFILING) +static bool report_done; + +RTEMS_INTERRUPT_LOCK_DEFINE( static, report_lock, "test report" ) +#endif + +void rtems_test_fatal_extension( + rtems_fatal_source source, + bool always_set_to_false, + rtems_fatal_code code +) +{ +#if defined(RTEMS_PROFILING) + rtems_interrupt_lock_context lock_context; + rtems_printer printer; + + rtems_print_printer_printk( &printer ); + + /* + * Ensures to report only once on SMP machines and ensures that the report is + * output completely. + */ + rtems_interrupt_lock_acquire( &report_lock, &lock_context ); + + if ( !report_done ) { + report_done = true; + + printk( + "\n*** PROFILING REPORT BEGIN %s ***\n", + rtems_test_name + ); + + rtems_profiling_report_xml( + rtems_test_name, + &printer, + 1, + " " + ); + + printk( + "*** PROFILING REPORT END %s ***\n", + rtems_test_name + ); + } + + rtems_interrupt_lock_release( &report_lock, &lock_context ); +#endif + + (void) source; + (void) always_set_to_false; + (void) code; +} -- cgit v1.2.3