forked from Imagelibrary/rtems
* sp18/init.c, sp31/task1.c, sp43/init.c, sp63/init.c, sp64/init.c, spfatal10/testcase.h, spfatal11/testcase.h, spobjgetnext/init.c, spwkspace/init.c: Use rtems_test_assert() consistently instead of system assert(). rtems_test_assert() is designed to integrate into the RTEMS test suite infrastructure.
27 lines
725 B
C
27 lines
725 B
C
/* Test __assert_func with NULL function name
|
|
*
|
|
* COPYRIGHT (c) 1989-2009.
|
|
* On-Line Applications Research Corporation (OAR).
|
|
*
|
|
* The license and distribution terms for this file may be
|
|
* found in the file LICENSE in this distribution or at
|
|
* http://www.rtems.com/license/LICENSE.
|
|
*
|
|
* $Id$
|
|
*/
|
|
|
|
#include <assert.h>
|
|
|
|
#define FATAL_ERROR_TEST_NAME "11"
|
|
#define FATAL_ERROR_DESCRIPTION "asserting with non-NULL strings..."
|
|
#define FATAL_ERROR_EXPECTED_SOURCE INTERNAL_ERROR_RTEMS_API
|
|
#define FATAL_ERROR_EXPECTED_IS_INTERNAL FALSE
|
|
#define FATAL_ERROR_EXPECTED_ERROR 0
|
|
|
|
void force_error()
|
|
{
|
|
__assert_func( __FILE__, __LINE__, NULL, "forced" );
|
|
|
|
/* we will not run this far */
|
|
}
|