summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtests/psx05/task.c
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/psxtests/psx05/task.c')
-rw-r--r--testsuites/psxtests/psx05/task.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/testsuites/psxtests/psx05/task.c b/testsuites/psxtests/psx05/task.c
index b5d54aa96c..7ba54ae36e 100644
--- a/testsuites/psxtests/psx05/task.c
+++ b/testsuites/psxtests/psx05/task.c
@@ -8,7 +8,7 @@
*
* Output parameters: NONE
*
- * COPYRIGHT (c) 1989-1999.
+ * COPYRIGHT (c) 1989-2009.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
@@ -31,13 +31,13 @@ void *Task_1(
status = pthread_mutex_trylock( &Mutex_id );
if ( status != EBUSY )
printf( "status = %d\n", status );
- assert( status == EBUSY );
+ rtems_test_assert( status == EBUSY );
printf( "Task: pthread_mutex_lock unavailable\n" );
status = pthread_mutex_lock( &Mutex_id );
if ( status )
printf( "status = %d\n", status );
- assert( !status );
+ rtems_test_assert( !status );
/* switch to init */