summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtests/psxualarm
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/psxtests/psxualarm')
-rw-r--r--testsuites/psxtests/psxualarm/init.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/testsuites/psxtests/psxualarm/init.c b/testsuites/psxtests/psxualarm/init.c
index 8c49d7f38e..82a4d8d251 100644
--- a/testsuites/psxtests/psxualarm/init.c
+++ b/testsuites/psxtests/psxualarm/init.c
@@ -1,5 +1,5 @@
/*
- * COPYRIGHT (c) 1989-1999.
+ * COPYRIGHT (c) 1989-2009.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
@@ -79,12 +79,12 @@ void *POSIX_Init(
/* unblock Signal and see if it happened */
status = sigemptyset( &mask );
- assert( !status );
+ rtems_test_assert( !status );
status = sigaddset( &mask, SIGALRM );
- assert( !status );
+ rtems_test_assert( !status );
puts( "Init: Unblock SIGALRM" );
status = sigprocmask( SIG_UNBLOCK, &mask, NULL );
- assert( !status );
+ rtems_test_assert( !status );
status = sleep(10);
/* stop ularm */