source: rtems/testsuites/sptests/spfatal10/testcase.h @ a12f7e9

4.115
Last change on this file since a12f7e9 was a0c7aa55, checked in by Sebastian Huber <sebastian.huber@…>, on 11/14/12 at 13:54:09

score: Add RTEMS_FATAL_SOURCE_ASSERT

  • Property mode set to 100644
File size: 775 bytes
RevLine 
[d329acf4]1/*  Test __assert_func with NULL function name
2 *
3 *  COPYRIGHT (c) 1989-2009.
4 *  On-Line Applications Research Corporation (OAR).
5 *
6 *  The license and distribution terms for this file may be
7 *  found in the file LICENSE in this distribution or at
8 *  http://www.rtems.com/license/LICENSE.
9 */
10
[9e7d02a3]11#include <assert.h>
12
[a0c7aa55]13static const char func [] = "Init";
14
[d329acf4]15#define FATAL_ERROR_TEST_NAME            "10"
16#define FATAL_ERROR_DESCRIPTION          "asserting with non-NULL strings..."
[a0c7aa55]17#define FATAL_ERROR_EXPECTED_SOURCE      RTEMS_FATAL_SOURCE_ASSERT
[d329acf4]18#define FATAL_ERROR_EXPECTED_IS_INTERNAL FALSE
[a0c7aa55]19#define FATAL_ERROR_EXPECTED_ERROR       ((rtems_fatal_code) func)
[d329acf4]20
21void force_error()
22{
[a0c7aa55]23  __assert_func( __FILE__, __LINE__, func, "forced" );
[b1274bd9]24
[d329acf4]25  /* we will not run this far */
26}
Note: See TracBrowser for help on using the repository browser.