summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtests/psx11/task.c
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/psxtests/psx11/task.c')
-rw-r--r--testsuites/psxtests/psx11/task.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/testsuites/psxtests/psx11/task.c b/testsuites/psxtests/psx11/task.c
index 5dd8aa3924..b42d81f792 100644
--- a/testsuites/psxtests/psx11/task.c
+++ b/testsuites/psxtests/psx11/task.c
@@ -50,10 +50,10 @@ void *Task_1(
struct timespec delay;
status = clock_gettime( CLOCK_REALTIME, &start );
- rtems_test_assert( !status );
+ rtems_test_assert( !status );
status = sched_rr_get_interval( getpid(), &delay );
- rtems_test_assert( !status );
+ rtems_test_assert( !status );
/* double the rr interval for confidence */
@@ -69,7 +69,7 @@ void *Task_1(
for ( ; ; ) {
status = clock_gettime( CLOCK_REALTIME, &current );
- rtems_test_assert( !status );
+ rtems_test_assert( !status );
diff_timespec( &start, &current, &difference );