source: rtems/testsuites/sptests/spfatal11/testcase.h @ a0c7aa55

4.115
Last change on this file since a0c7aa55 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: 714 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
[d329acf4]13#define FATAL_ERROR_TEST_NAME            "11"
14#define FATAL_ERROR_DESCRIPTION          "asserting with non-NULL strings..."
[a0c7aa55]15#define FATAL_ERROR_EXPECTED_SOURCE      RTEMS_FATAL_SOURCE_ASSERT
[d329acf4]16#define FATAL_ERROR_EXPECTED_IS_INTERNAL FALSE
17#define FATAL_ERROR_EXPECTED_ERROR       0
18
19void force_error()
20{
21  __assert_func( __FILE__, __LINE__, NULL, "forced" );
[b1274bd9]22
[d329acf4]23  /* we will not run this far */
24}
Note: See TracBrowser for help on using the repository browser.