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
Line 
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
11#include <assert.h>
12
13static const char func [] = "Init";
14
15#define FATAL_ERROR_TEST_NAME            "10"
16#define FATAL_ERROR_DESCRIPTION          "asserting with non-NULL strings..."
17#define FATAL_ERROR_EXPECTED_SOURCE      RTEMS_FATAL_SOURCE_ASSERT
18#define FATAL_ERROR_EXPECTED_IS_INTERNAL FALSE
19#define FATAL_ERROR_EXPECTED_ERROR       ((rtems_fatal_code) func)
20
21void force_error()
22{
23  __assert_func( __FILE__, __LINE__, func, "forced" );
24
25  /* we will not run this far */
26}
Note: See TracBrowser for help on using the repository browser.