summaryrefslogtreecommitdiffstats
path: root/spec/score/thread/val/tls-max-zero.yml
blob: 0e9692da4e07da49308f53a787d2129d7ddd479f (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
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 the thread-local objects definition and
    the application configuration.
  action-code: |
    /* Nothing to do */
  checks:
  - brief: |
      Check that the ${/acfg/if/max-thread-local-storage-size:/name}
      application configuration option resulted in the expected system setting.
      Since at least one thread-local objects is available, the referenced
      requirement is validated.
    code: |
      T_step_eq_int( ${.:/step}, tls_object, 0 );
      T_step_eq_sz( ${.:/step}, _Thread_Maximum_TLS_size, 0 );
    links:
    - role: validation
      uid: ../req/tls-max-zero
    - role: validation
      uid: /acfg/if/max-thread-local-storage-size
  links: []
test-brief: |
  Tests properties of thread-local objects.
test-context: []
test-context-support: null
test-description: null
test-header: null
test-includes:
- rtems/score/thread.h
test-local-includes: []
test-setup: null
test-stop: null
test-support: |
  static _Thread_local int volatile tls_object;
test-target: testsuites/validation/tc-score-thread-tls-max-zero.c
test-teardown: null
type: test-case