summaryrefslogtreecommitdiffstats
path: root/spec/acfg/val/one-cpu.yml
blob: 125d0d4e7773db8be3ef0efe177c5dc782162a51 (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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
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;
    uint32_t          yield_count_before;
  checks:
  - brief: |
      Check that the ${/acfg/if/max-priority:/name} application configuration
      option resulted in the expected system setting using
      ${/rtems/task/if/maximum-priority:/spec}.
    code: |
      T_eq_u32( RTEMS_MAXIMUM_PRIORITY, 127 );
    links:
    - role: validation
      uid: ../req/max-priority
    - role: validation
      uid: /rtems/task/req/maximum-priority
  - brief: |
      Check that the Deterministic Priority Scheduler which was configured by
      the ${/acfg/if/scheduler-priority:/name} application configuration in the
      test suite.
    code: |
      yield_count_before = yield_count;
      sc = rtems_task_wake_after( RTEMS_YIELD_PROCESSOR );
      T_rsc_success( sc );
      T_eq_u32( yield_count, yield_count_before + 1 );
    links:
    - role: validation
      uid: ../req/scheduler-priority
  - brief: |
      Check that we are able to identify the scheduler by the name configured
      by the ${/acfg/if/scheduler-priority:/name} application configuration
      option in the test suite.
    code: |
      sc = rtems_scheduler_ident( TEST_SCHEDULER_A_NAME, &id );
      T_rsc_success( sc );
    links:
    - role: validation
      uid: ../req/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
- rtems/score/schedulerpriority.h
test-local-includes:
- ts-config.h
- tx-support.h
test-setup: null
test-stop: null
test-support: |
  static uint32_t yield_count;

  void __real__Scheduler_priority_Yield(
    const Scheduler_Control *scheduler,
    Thread_Control          *thread,
    Scheduler_Node          *node
  );

  void __wrap__Scheduler_priority_Yield(
    const Scheduler_Control *scheduler,
    Thread_Control          *thread,
    Scheduler_Node          *node
  );

  void __wrap__Scheduler_priority_Yield(
    const Scheduler_Control *scheduler,
    Thread_Control          *thread,
    Scheduler_Node          *node
  )
  {
    ++yield_count;
    __real__Scheduler_priority_Yield( scheduler, thread, node );
  }
test-target: testsuites/validation/tc-acfg-one-cpu.c
test-teardown: null
type: test-case