summaryrefslogtreecommitdiffstats
path: root/testsuites/tmtests/tm25/task1.c
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/tmtests/tm25/task1.c')
-rw-r--r--testsuites/tmtests/tm25/task1.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/testsuites/tmtests/tm25/task1.c b/testsuites/tmtests/tm25/task1.c
index 0251e5875b..7777b51df9 100644
--- a/testsuites/tmtests/tm25/task1.c
+++ b/testsuites/tmtests/tm25/task1.c
@@ -14,6 +14,8 @@
#define CONFIGURE_INIT
#include "system.h"
+const char rtems_test_name[] = "TIME TEST 25";
+
rtems_id Semaphore_id;
rtems_task High_tasks(
@@ -34,7 +36,7 @@ rtems_task Init(
Print_Warning();
- puts( "\n\n*** TIME TEST 25 ***" );
+ TEST_BEGIN();
status = rtems_semaphore_create(
rtems_build_name( 'S', 'M', '1', ' ') ,
@@ -104,6 +106,6 @@ rtems_task Low_task(
CALLING_OVERHEAD_CLOCK_TICK
);
- puts( "*** END OF TEST 25 ***" );
+ TEST_END();
rtems_test_exit( 0 );
}