Files
rtems/cpukit/libtest/testextension.c
Sebastian Huber 9de8d61a9a libtest: <rtems/test.h> to <rtems/test-info.h>
Rename this header file to later move <t.h> to <rtems/test.h>.  The main
feature provided by <rtems/test-info.h> is the output of standard test
information which is consumed by the RTEMS Tester.

Update #3199.
2020-07-23 09:27:10 +02:00

75 lines
1.5 KiB
C

/*
* Copyright (c) 2014 embedded brains GmbH. All rights reserved.
*
* embedded brains GmbH
* Dornierstr. 4
* 82178 Puchheim
* Germany
* <rtems@embedded-brains.de>
*
* 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 <rtems/test-info.h>
#include <rtems/profiling.h>
#include <rtems/bspIo.h>
#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;
}