source: rtems/testsuites/sptests/spfatal27/init.c @ 1a48cbf

5
Last change on this file since 1a48cbf was 1a48cbf, checked in by Sebastian Huber <sebastian.huber@…>, on 11/11/19 at 19:08:46

sptests: Avoid include path magic

Update #3818.

  • Property mode set to 100644
File size: 910 bytes
Line 
1#ifdef HAVE_CONFIG_H
2#include "config.h"
3#endif
4
5#include "../spfatal_support/spfatal.h"
6
7/*
8 * Copyright (c) 2014 embedded brains GmbH.  All rights reserved.
9 *
10 *  embedded brains GmbH
11 *  Dornierstrasse 4
12 *  82178 Puchheim
13 *  Germany
14 *  <rtems@embedded-brains.de>
15 *
16 * The license and distribution terms for this file may be
17 * found in the file LICENSE in this distribution or at
18 * http://www.rtems.org/license/LICENSE.
19 */
20
21#define FATAL_ERROR_TEST_NAME            "27"
22#define FATAL_ERROR_DESCRIPTION          "libio init no posix key left"
23#define FATAL_ERROR_EXPECTED_SOURCE      INTERNAL_ERROR_CORE
24#define FATAL_ERROR_EXPECTED_ERROR       INTERNAL_ERROR_LIBIO_USER_ENV_KEY_CREATE_FAILED
25
26#define CONFIGURE_MAXIMUM_POSIX_KEYS (-1)
27#define CONFIGURE_MAXIMUM_POSIX_KEY_VALUE_PAIRS (0)
28
29static void force_error(void)
30{
31  /* we should not reach this */
32}
33
34#include "../spfatal_support/spfatalimpl.h"
Note: See TracBrowser for help on using the repository browser.