summaryrefslogtreecommitdiffstats
path: root/spec/score/thread/val/fatal-idle-thread-create-failed.yml
blob: 6235c1d6426a9f334492bac1c723b5b63744b7c2 (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
SPDX-License-Identifier: CC-BY-SA-4.0 OR BSD-2-Clause
copyrights:
- Copyright (C) 2022 embedded brains GmbH (http://www.embedded-brains.de)
enabled-by: true
links: []
test-actions:
- action-brief: |
    The test action is carried out by configuring a task create extension which
    always fails.
  action-code: |
    /* Nothing to do */
  checks:
  - brief: |
      Check that the expected fatal source is present.
    code: |
      T_step_eq_int( ${.:/step}, ctx->source, INTERNAL_ERROR_CORE );
    links:
    - role: validation
      uid: ../req/fatal-idle-thread-create-failed
  - brief: |
      Check that the expected fatal code is present.
    code: |
      T_step_eq_ulong(
        ${.:/step},
        ctx->code,
        INTERNAL_ERROR_IDLE_THREAD_CREATE_FAILED
      );
    links:
    - role: validation
      uid: ../req/fatal-idle-thread-create-failed
  links: []
test-brief: |
  Tests a fatal error caused by a failing task create extension.
test-context: []
test-context-support: null
test-description: null
test-header:
  code: null
  freestanding: true
  includes:
  - rtems.h
  local-includes: []
  run-params:
  - description: |
      is the fatal source.
    dir: null
    name: source
    specifier: ${/rtems/userext/if/fatal-source:/name} ${.:name}
  - description: |
      is the fatal code.
    dir: null
    name: code
    specifier: ${/rtems/userext/if/fatal-code:/name} ${.:name}
  target: testsuites/validation/tr-fatal-idle-thread-create-failed.h
test-includes:
- rtems.h
test-local-includes:
- tr-fatal-idle-thread-create-failed.h
test-setup: null
test-stop: null
test-support: null
test-target: testsuites/validation/tr-fatal-idle-thread-create-failed.c
test-teardown: null
type: test-case