summaryrefslogtreecommitdiffstats
path: root/spec/testsuites/validation-acfg-0.yml
blob: a63ec3d2962c415ae590272aeda9c47ecd2e339f (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
31
32
33
34
35
36
SPDX-License-Identifier: CC-BY-SA-4.0 OR BSD-2-Clause
copyrights:
- Copyright (C) 2021 embedded brains GmbH (http://www.embedded-brains.de)
enabled-by: true
links:
- role: requirement-refinement
  uid: validation
test-brief: |
  This validation test suite is used to validate the default value of
  application configuration options taking the optional BSP provided settings
  into account.
test-code: |
  const char rtems_test_name[] = "${.:/test-suite-name}";

  #define CONFIGURE_IDLE_TASK_STORAGE_SIZE RTEMS_MINIMUM_STACK_SIZE

  #define CONFIGURE_IDLE_TASK_INITIALIZES_APPLICATION

  void *IdleBody( uintptr_t ignored )
  {
    (void) ignored;
    RunTestSuite();
  }

  #define CONFIGURE_IDLE_TASK_BODY IdleBody

  #define CONFIGURE_INIT

  #include <rtems/confdefs.h>
test-description: null
test-includes: []
test-local-includes:
- ts-acfg.h
- tx-support.h
test-target: testsuites/validation/ts-validation-acfg-0.c
type: test-suite