source: rtems/testsuites/smptests/smpfatal05/init.c @ 54835ae

5
Last change on this file since 54835ae was 54835ae, checked in by Sebastian Huber <sebastian.huber@…>, on 02/01/17 at 13:10:18

Rename CONFIGURE_SMP_MAXIMUM_PROCESSORS

Rename CONFIGURE_SMP_MAXIMUM_PROCESSORS to CONFIGURE_MAXIMUM_PROCESSORS
since the SMP part is superfluous.

Update #2894.

  • Property mode set to 100644
File size: 2.2 KB
Line 
1/*
2 * Copyright (c) 2014 embedded brains GmbH.  All rights reserved.
3 *
4 *  embedded brains GmbH
5 *  Dornierstr. 4
6 *  82178 Puchheim
7 *  Germany
8 *  <rtems@embedded-brains.de>
9 *
10 * The license and distribution terms for this file may be
11 * found in the file LICENSE in this distribution or at
12 * http://www.rtems.org/license/LICENSE.
13 */
14
15#ifdef HAVE_CONFIG_H
16  #include "config.h"
17#endif
18
19#define TESTS_USE_PRINTK
20#include "tmacros.h"
21
22#include <rtems.h>
23#include <rtems/score/smpimpl.h>
24
25#include <assert.h>
26#include <stdlib.h>
27
28const char rtems_test_name[] = "SMPFATAL 5";
29
30static void Init(rtems_task_argument arg)
31{
32  assert(0);
33}
34
35static void fatal_extension(
36  rtems_fatal_source source,
37  bool always_set_to_false,
38  rtems_fatal_code code
39)
40{
41  TEST_BEGIN();
42
43  if (
44    source == RTEMS_FATAL_SOURCE_SMP
45      && !always_set_to_false
46      && code == SMP_FATAL_MANDATORY_PROCESSOR_NOT_PRESENT
47  ) {
48    TEST_END();
49  }
50}
51
52#define CONFIGURE_APPLICATION_DOES_NOT_NEED_CLOCK_DRIVER
53#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
54
55#define CONFIGURE_INITIAL_EXTENSIONS \
56  { .fatal = fatal_extension }, \
57  RTEMS_TEST_INITIAL_EXTENSION
58
59/* Lets see when the first RTEMS system hits this limit */
60#define CONFIGURE_MAXIMUM_PROCESSORS 64
61
62#define CONFIGURE_SCHEDULER_SIMPLE_SMP
63
64#include <rtems/scheduler.h>
65
66RTEMS_SCHEDULER_CONTEXT_SIMPLE_SMP(a);
67
68#define CONFIGURE_SCHEDULER_CONTROLS \
69  RTEMS_SCHEDULER_CONTROL_SIMPLE_SMP(a, rtems_build_name('S', 'I', 'M', 'P'))
70
71#define ASSIGN \
72  RTEMS_SCHEDULER_ASSIGN(0, RTEMS_SCHEDULER_ASSIGN_PROCESSOR_MANDATORY)
73
74#define CONFIGURE_SMP_SCHEDULER_ASSIGNMENTS \
75 ASSIGN, ASSIGN, ASSIGN, ASSIGN, ASSIGN, ASSIGN, ASSIGN, ASSIGN, \
76 ASSIGN, ASSIGN, ASSIGN, ASSIGN, ASSIGN, ASSIGN, ASSIGN, ASSIGN, \
77 ASSIGN, ASSIGN, ASSIGN, ASSIGN, ASSIGN, ASSIGN, ASSIGN, ASSIGN, \
78 ASSIGN, ASSIGN, ASSIGN, ASSIGN, ASSIGN, ASSIGN, ASSIGN, ASSIGN, \
79 ASSIGN, ASSIGN, ASSIGN, ASSIGN, ASSIGN, ASSIGN, ASSIGN, ASSIGN, \
80 ASSIGN, ASSIGN, ASSIGN, ASSIGN, ASSIGN, ASSIGN, ASSIGN, ASSIGN, \
81 ASSIGN, ASSIGN, ASSIGN, ASSIGN, ASSIGN, ASSIGN, ASSIGN, ASSIGN, \
82 ASSIGN, ASSIGN, ASSIGN, ASSIGN, ASSIGN, ASSIGN, ASSIGN, ASSIGN
83
84#define CONFIGURE_MAXIMUM_TASKS 1
85
86#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
87
88#define CONFIGURE_INIT
89
90#include <rtems/confdefs.h>
Note: See TracBrowser for help on using the repository browser.