summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtests/psxmsgq03
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/psxtests/psxmsgq03')
-rw-r--r--testsuites/psxtests/psxmsgq03/init.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuites/psxtests/psxmsgq03/init.c b/testsuites/psxtests/psxmsgq03/init.c
index 2c941da090..4d64aa53d5 100644
--- a/testsuites/psxtests/psxmsgq03/init.c
+++ b/testsuites/psxtests/psxmsgq03/init.c
@@ -55,14 +55,14 @@ void *POSIX_Init(
if ( Queue == (-1) ) {
perror( "mq_open failed" );
}
- assert( Queue != (-1) );
+ rtems_test_assert( Queue != (-1) );
puts( "Init - send to message queue" );
status = mq_send( Queue, (const char *)&status, sizeof(int), 1 );
if ( status == (-1) ) {
perror( "mq_status failed" );
}
- assert( status != (-1) );
+ rtems_test_assert( status != (-1) );
/*
* Now create the timer we will send to a full queue from.