summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtests/psx10/task3.c
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/psxtests/psx10/task3.c')
-rw-r--r--testsuites/psxtests/psx10/task3.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuites/psxtests/psx10/task3.c b/testsuites/psxtests/psx10/task3.c
index f3493aeb16..8c50c855d9 100644
--- a/testsuites/psxtests/psx10/task3.c
+++ b/testsuites/psxtests/psx10/task3.c
@@ -29,13 +29,13 @@ void *Task_3(
printf( "Task_3: ID is 0x%08" PRIxpthread_t "\n", Task_id );
status = pthread_mutex_lock( &Mutex_id );
- rtems_test_assert( !status );
+ rtems_test_assert( !status );
puts( "Task_3: pthread_cond_wait" );
status = pthread_cond_wait( &Cond1_id, &Mutex_id );
if ( status != EINVAL )
printf( "status = %d\n", status );
- rtems_test_assert( status == EINVAL );
+ rtems_test_assert( status == EINVAL );
puts( "Task_3: pthread_cond_wait - EINVAL (mutex not locked after signal)");
puts( "Task_3: task exit" );