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

4.104.115
Last change on this file since b1274bd9 was b1274bd9, checked in by Ralf Corsepius <ralf.corsepius@…>, on 11/30/09 at 03:33:25

Whitespace removal.

  • Property mode set to 100644
File size: 704 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 *  $Id$
11 */
12
13#define FATAL_ERROR_TEST_NAME            "11"
14#define FATAL_ERROR_DESCRIPTION          "asserting with non-NULL strings..."
15#define FATAL_ERROR_EXPECTED_SOURCE      INTERNAL_ERROR_RTEMS_API
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" );
22
23  /* we will not run this far */
24}
Note: See TracBrowser for help on using the repository browser.