validation: Use T_report_hash_sha256_update()

Add the direct BSP character ouput to the report hash.

Update #3716.
This commit is contained in:
Sebastian Huber
2022-08-05 15:35:33 +02:00
parent 7219d3c0e9
commit f6a38fb254

View File

@@ -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' );
}