summaryrefslogtreecommitdiffstats
path: root/spec/rtems/part/val/ident.yml
blob: eb9296b2fe7d4014ad50f7c6841d960ecf53e86c (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
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: validation
  uid: ../req/ident
test-actions:
- action-brief: |
    Run the generic object identification tests for Classic API partition class
    objects defined by ${../../req/ident:/spec}.
  action-code: |
    static RTEMS_ALIGNED( RTEMS_PARTITION_ALIGNMENT ) long area[32];
    rtems_status_code                                      sc;
    rtems_id                                               id_local_object;

    sc = rtems_partition_create(
      NAME_LOCAL_OBJECT,
      area,
      sizeof( area ),
      sizeof( area ),
      RTEMS_DEFAULT_ATTRIBUTES,
      &id_local_object
    );
    T_assert_rsc_success( sc );

    ${../../req/ident:/test-run}(
      id_local_object,
      NAME_LOCAL_OBJECT,
      ClassicPartIdentAction
    );

    sc = rtems_partition_delete( id_local_object );
    T_rsc_success( sc );
  checks: []
  links: []
test-brief: Test the ${../if/ident:/name} directive.
test-context: []
test-context-support: null
test-description: null
test-header: null
test-includes: []
test-local-includes:
- tr-object-ident.h
test-setup: null
test-stop: null
test-support: |
  #define NAME_LOCAL_OBJECT rtems_build_name( 'P', 'A', 'R', 'T' )

  static rtems_status_code ClassicPartIdentAction(
    rtems_name name,
    uint32_t   node,
    rtems_id  *id
  )
  {
    return rtems_partition_ident( name, node, id );
  }
test-target: testsuites/validation/tc-part-ident.c
test-teardown: null
type: test-case