summaryrefslogtreecommitdiffstats
path: root/testsuites/validation
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2022-06-28 07:45:02 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2022-07-04 08:29:52 +0200
commit4f87edbb75865cb92efd3166d1faeb5fd720a47f (patch)
treec9ed1b9e251ef7761c82fbe82c7dea22a7a6404b /testsuites/validation
parentgcov: Add fork(), etc. gcov wrappers (diff)
downloadrtems-4f87edbb75865cb92efd3166d1faeb5fd720a47f.tar.bz2
gcov: Add functions to dump the gcov information
Update #4670.
Diffstat (limited to 'testsuites/validation')
-rw-r--r--testsuites/validation/tc-terminate.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/testsuites/validation/tc-terminate.c b/testsuites/validation/tc-terminate.c
index a3f55fcc6c..79060930d7 100644
--- a/testsuites/validation/tc-terminate.c
+++ b/testsuites/validation/tc-terminate.c
@@ -56,6 +56,7 @@
#include <setjmp.h>
#include <string.h>
#include <rtems/bspIo.h>
+#include <rtems/test-info.h>
#include <rtems/score/atomic.h>
#include <rtems/score/io.h>
#include <rtems/score/percpu.h>
@@ -150,7 +151,7 @@ void __wrap__CPU_Fatal_halt( uint32_t source, CPU_Uint32ptr code )
longjmp( before_terminate, 1 );
} else {
#if defined(RTEMS_COVERAGE)
- _IO_Dump_gcov_info( rtems_put_char, NULL );
+ rtems_test_gcov_dump_info();
#endif
__real__CPU_Fatal_halt( source, code );
}