summaryrefslogtreecommitdiffstats
path: root/testsuites/validation/tr-event-constant.c
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2023-11-22 15:00:05 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2023-11-28 14:30:46 +0100
commit528f0e1947876ef584681860c4c8b0615c548baf (patch)
treecd2892a58fa90fdb4fd08094fdc7fd22da31910d /testsuites/validation/tr-event-constant.c
parentlibtest: Add T_add_remark() (diff)
downloadrtems-528f0e1947876ef584681860c4c8b0615c548baf.tar.bz2
validation: Add nested test case remarks
Close #4971.
Diffstat (limited to 'testsuites/validation/tr-event-constant.c')
-rw-r--r--testsuites/validation/tr-event-constant.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/testsuites/validation/tr-event-constant.c b/testsuites/validation/tr-event-constant.c
index 82b3129fde..a0327973de 100644
--- a/testsuites/validation/tr-event-constant.c
+++ b/testsuites/validation/tr-event-constant.c
@@ -681,6 +681,11 @@ static void RtemsEventValEventConstant_Action_16(
static T_fixture_node RtemsEventValEventConstant_Node;
+static T_remark RtemsEventValEventConstant_Remark = {
+ .next = NULL,
+ .remark = "RtemsEventValEventConstant"
+};
+
void RtemsEventValEventConstant_Run( rtems_event_set event, int number )
{
RtemsEventValEventConstant_Context *ctx;
@@ -714,6 +719,7 @@ void RtemsEventValEventConstant_Run( rtems_event_set event, int number )
RtemsEventValEventConstant_Action_15( ctx );
RtemsEventValEventConstant_Action_16( ctx );
+ T_add_remark( &RtemsEventValEventConstant_Remark );
T_pop_fixture();
}