2009-12-08 Joel Sherrill <joel.sherrill@oarcorp.com>

* itronmbf01/init.c, itronsem01/init.c, itronsem01/system.h,
	itrontask02/dormant.c, itrontask02/init.c, itrontask03/init.c,
	itrontask03/preempt.c: Use rtems_test_assert() consistently instead
	of system assert(). rtems_test_assert() is designed to integrate into
	the RTEMS test suite infrastructure.
This commit is contained in:
Joel Sherrill
2009-12-08 17:52:47 +00:00
parent 0160b3b9d2
commit d35734dd77
8 changed files with 128 additions and 126 deletions

View File

@@ -10,7 +10,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
@@ -23,7 +23,6 @@
#define CONFIGURE_INIT
#include "system.h"
#include <stdio.h>
#include <assert.h>
void ITRON_Init( void )
{
@@ -134,5 +133,5 @@ void ITRON_Init( void )
directive_failed( status, "sta_tsk of TA3" );
exd_tsk();
assert(0);
rtems_test_assert(0);
}