summaryrefslogtreecommitdiffstats
path: root/testsuites/tmtests/tm21/task1.c
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/tmtests/tm21/task1.c')
-rw-r--r--testsuites/tmtests/tm21/task1.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/testsuites/tmtests/tm21/task1.c b/testsuites/tmtests/tm21/task1.c
index 8813f7b7c3..69c6a96158 100644
--- a/testsuites/tmtests/tm21/task1.c
+++ b/testsuites/tmtests/tm21/task1.c
@@ -14,6 +14,8 @@
#define CONFIGURE_INIT
#include "system.h"
+const char rtems_test_name[] = "TIME TEST 21";
+
uint8_t Region_area[ 2048 ] CPU_STRUCTURE_ALIGNMENT;
uint8_t Partition_area[ 2048 ] CPU_STRUCTURE_ALIGNMENT;
@@ -30,7 +32,7 @@ rtems_task Init(
Print_Warning();
- puts( "\n\n*** TIME TEST 21 ***" );
+ TEST_BEGIN();
status = rtems_task_create(
rtems_build_name( 'T', 'I', 'M', 'E' ),
@@ -233,6 +235,6 @@ rtems_task Task_1(
CALLING_OVERHEAD_RATE_MONOTONIC_IDENT
);
- puts( "*** END OF TEST 21 ***" );
+ TEST_END();
rtems_test_exit( 0 );
}