summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtests/psxsignal01/init.c
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/psxtests/psxsignal01/init.c')
-rw-r--r--testsuites/psxtests/psxsignal01/init.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/testsuites/psxtests/psxsignal01/init.c b/testsuites/psxtests/psxsignal01/init.c
index a36d0846cb..d124bd5b3d 100644
--- a/testsuites/psxtests/psxsignal01/init.c
+++ b/testsuites/psxtests/psxsignal01/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
@@ -124,23 +124,23 @@ void *POSIX_Init(
/* unblock Signal and see if it happened */
status = sigemptyset( &mask );
- assert( !status );
+ rtems_test_assert( !status );
status = sigaddset( &mask, SIGUSR1 );
- assert( !status );
+ rtems_test_assert( !status );
status = sigaddset( &mask, SIGFPE );
- assert( !status );
+ rtems_test_assert( !status );
status = sigaddset( &mask, SIGILL );
- assert( !status );
+ rtems_test_assert( !status );
status = sigaddset( &mask, SIGSEGV );
- assert( !status );
+ rtems_test_assert( !status );
puts( "Init: Unblock SIGUSR1 SIGFPE SIGILL SIGSEGV" );
status = sigprocmask( SIG_UNBLOCK, &mask, NULL );
- assert( !status );
+ rtems_test_assert( !status );
/* install a signal handler for SIGUSR1 */
Signal_occurred = 0;