summaryrefslogtreecommitdiff
path: root/spec/acfg/val/one-cpu.yml
blob: 5533244e18469d2260a21106f872177d46804f6c (plain)
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
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: []
test-actions:
- action-brief: |
    Check the effect of application configuration options.
  action-code: |
    rtems_status_code sc;
    rtems_id          id;
  checks:
  - brief: |
      Check the configured ${/acfg/if/max-priority:/name} value using
      ${/rtems/task/if/maximum-priority}.  This configuration option affects
      only the Deterministic Priority Scheduler which was explicitly configured
      by ${/acfg/if/scheduler-priority:/name} in the test suite.
    code: |
      T_eq_u32( RTEMS_MAXIMUM_PRIORITY, 127 );
    links:
    - role: validation
      uid: ../if/max-priority
    - role: validation
      uid: ../if/scheduler-priority
    - role: validation
      uid: /rtems/task/if/maximum-priority
  - brief: |
      Check the configured ${/acfg/if/max-priority:/name} value using
      ${/rtems/task/if/maximum-priority}.  This configuration option affects
      only the Deterministic Priority Scheduler which was explicitly configured
      by ${/acfg/if/scheduler-priority:/name} in the test suite.
    code: |
      sc = rtems_scheduler_ident( TEST_SCHEDULER_A_NAME, &id );
      T_rsc_success( sc );
    links:
    - role: validation
      uid: ../if/scheduler-name
  links: []
test-brief: |
  Tests the effect of application configuration options.
test-context: []
test-context-support: null
test-description: null
test-header: null
test-includes:
- rtems.h
test-local-includes:
- ts-config.h
- tx-support.h
test-setup: null
test-stop: null
test-support: null
test-target: testsuites/validation/tc-acfg-one-cpu.c
test-teardown: null
type: test-case