summaryrefslogtreecommitdiffstats
path: root/testsuites/validation/tr-io-kernel.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--testsuites/validation/tr-io-kernel.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/testsuites/validation/tr-io-kernel.c b/testsuites/validation/tr-io-kernel.c
index c31cf374e0..bbebfe5a26 100644
--- a/testsuites/validation/tr-io-kernel.c
+++ b/testsuites/validation/tr-io-kernel.c
@@ -3,11 +3,11 @@
/**
* @file
*
- * @ingroup RTEMSTestCaseRtemsIoValKernel
+ * @ingroup RtemsIoValKernel
*/
/*
- * Copyright (C) 2021 embedded brains GmbH (http://www.embedded-brains.de)
+ * Copyright (C) 2021 embedded brains GmbH & Co. KG
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -59,9 +59,9 @@
#include <rtems/test.h>
/**
- * @defgroup RTEMSTestCaseRtemsIoValKernel spec:/rtems/io/val/kernel
+ * @defgroup RtemsIoValKernel spec:/rtems/io/val/kernel
*
- * @ingroup RTEMSTestSuiteTestsuitesValidationIoKernel
+ * @ingroup TestsuitesValidationIoKernel
*
* @brief Tests the functions referenced by BSP_output_char and BSP_poll_char.
*
@@ -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' );
}