summaryrefslogtreecommitdiffstats
path: root/testsuites/sptests/spfatal09/testcase.h
blob: ee87c1e729a3268cbd64500581ab37488d4de977 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/*
 *  Malloc Initialization Error
 *
 *  COPYRIGHT (c) 1989-2010.
 *  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 <rtems/malloc.h>
#include <rtems/libcsupport.h>

#define FATAL_ERROR_TEST_NAME            "9"
#define FATAL_ERROR_DESCRIPTION          "Bad heap address to malloc"
#define FATAL_ERROR_EXPECTED_SOURCE      INTERNAL_ERROR_RTEMS_API
#define FATAL_ERROR_EXPECTED_IS_INTERNAL FALSE
#define FATAL_ERROR_EXPECTED_ERROR       RTEMS_NO_MEMORY

char Malloc_Heap[ 1 ] CPU_STRUCTURE_ALIGNMENT;

void force_error()
{
  RTEMS_Malloc_Initialize( Malloc_Heap, sizeof(Malloc_Heap), 0 );

  /* we will not run this far */
}