summaryrefslogtreecommitdiffstats
path: root/testsuites/validation/tr-io-kernel.c
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2022-08-05 15:35:33 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2022-08-10 07:51:19 +0200
commitf6a38fb2546950909f371691494371993968b20c (patch)
tree923725e09603d1948956b84ebdb5029712875ede /testsuites/validation/tr-io-kernel.c
parentlibtest: Add T_report_hash_sha256_update() (diff)
downloadrtems-f6a38fb2546950909f371691494371993968b20c.tar.bz2
validation: Use T_report_hash_sha256_update()
Add the direct BSP character ouput to the report hash. Update #3716.
Diffstat (limited to '')
-rw-r--r--testsuites/validation/tr-io-kernel.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/testsuites/validation/tr-io-kernel.c b/testsuites/validation/tr-io-kernel.c
index c31cf374e0..78fa415f0a 100644
--- a/testsuites/validation/tr-io-kernel.c
+++ b/testsuites/validation/tr-io-kernel.c
@@ -82,7 +82,9 @@
*/
static void RtemsIoValKernel_Action_0( void )
{
+ T_report_hash_sha256_update( 'X' );
( *BSP_output_char )( 'X' );
+ T_report_hash_sha256_update( '\n' );
( *BSP_output_char )( '\n' );
}