summaryrefslogtreecommitdiffstats
path: root/spec/rtems/part/req/perf-get-no-buffer.yml
blob: 0115fbef02a9de8c50d0ee8424a65a85330a39fc (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
SPDX-License-Identifier: CC-BY-SA-4.0 OR BSD-2-Clause
copyrights:
- Copyright (C) 2020 embedded brains GmbH (http://www.embedded-brains.de)
enabled-by: true
links:
- role: runtime-measurement-request
  uid: ../val/performance
limits: {}
params: {}
rationale: null
references: []
test-body:
  brief: |
    Try to get a buffer.
  code: |
    ctx->status = rtems_partition_get_buffer( ctx->part_one, &ctx->buffer );
  description: null
test-cleanup:
  brief: |
    Return the buffer.
  code: |
    rtems_status_code sc;

    sc = rtems_partition_return_buffer( ctx->part_one, ctx->buffer_2 );
    T_rsc_success( sc );
  description: null
test-prepare:
  brief: |
    Get the buffer.
  code: |
    rtems_status_code sc;

    sc = rtems_partition_get_buffer( ctx->part_one, &ctx->buffer_2 );
    T_rsc_success( sc );
  description: null
test-setup: null
test-teardown:
  brief: |
    Check the status code.
  code: |
    T_quiet_rsc( ctx->status, RTEMS_UNSATISFIED );

    return tic == toc;
  description: null
text: |
  When a partition has no free buffers, the ${.:limit-kind} runtime of exactly
  ${../val/performance:/params/sample-count} unsatisfied calls to
  ${../if/get-buffer:/name} in the ${.:/environment} shall be
  ${.:limit-condition}.
non-functional-type: performance-runtime
requirement-type: non-functional
type: requirement