summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtests/psxmsgq01/init.c
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/psxtests/psxmsgq01/init.c')
-rw-r--r--testsuites/psxtests/psxmsgq01/init.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/testsuites/psxtests/psxmsgq01/init.c b/testsuites/psxtests/psxmsgq01/init.c
index 0f4bb32f92..5d544ddeeb 100644
--- a/testsuites/psxtests/psxmsgq01/init.c
+++ b/testsuites/psxtests/psxmsgq01/init.c
@@ -20,6 +20,8 @@
#include <signal.h> /* signal facilities */
#include "test_support.h"
+const char rtems_test_name[] = "PSXMSGQ 1";
+
/* forward declarations to avoid warnings */
void Start_Test(char *description);
void Validate_attributes(mqd_t mq, int oflag, int msg_count);
@@ -1272,7 +1274,7 @@ void *POSIX_Init(
void *argument
)
{
- puts( "\n\n*** POSIX MESSAGE QUEUE TEST ***" );
+ TEST_BEGIN();
validate_mq_open_error_codes( );
open_test_queues();
@@ -1291,7 +1293,7 @@ void *POSIX_Init(
verify_mq_receive();
verify_mq_send();
- puts( "*** END OF POSIX MESSAGE QUEUE TEST ***" );
+ TEST_END();
rtems_test_exit( 0 );
return NULL; /* just so the compiler thinks we returned something */