source: rtems-central/spec/rtems/sem/val/ident.yml @ a1c17c5

Last change on this file since a1c17c5 was a1c17c5, checked in by Sebastian Huber <sebastian.huber@…>, on 09/18/20 at 08:12:48

spec: Delete resources in validation tests

  • Property mode set to 100644
File size: 1.2 KB
Line 
1SPDX-License-Identifier: CC-BY-SA-4.0 OR BSD-2-Clause
2copyrights:
3- Copyright (C) 2020 embedded brains GmbH (http://www.embedded-brains.de)
4enabled-by: true
5links:
6- role: validation
7  uid: ../req/ident
8test-actions:
9- action: |
10    ${../../req/ident:/test-run}(
11      id_local_object,
12      ClassicSemIdentAction
13    );
14  checks: []
15  description: |
16    Run the generic object identification tests for Classic API semaphore class
17    objects defined by ${../../req/ident}.
18  links: []
19test-brief: Test the ${../if/ident:/name} directive.
20test-description: null
21test-epilogue: |
22  sc = rtems_semaphore_delete( id_local_object );
23  T_rsc_success( sc );
24test-fixture: null
25test-header: null
26test-includes: []
27test-local-includes:
28- tr-object-ident.h
29test-prologue: |
30  rtems_status_code sc;
31  rtems_id id_local_object;
32
33  sc = rtems_semaphore_create(
34    ClassicObjectIdentName,
35    0,
36    RTEMS_DEFAULT_ATTRIBUTES,
37    0,
38    &id_local_object
39  );
40  T_assert_rsc_success( sc );
41test-support: |
42  static rtems_status_code ClassicSemIdentAction(
43    rtems_name name,
44    uint32_t   node,
45    rtems_id  *id
46  )
47  {
48    return rtems_semaphore_ident( name, node, id );
49  }
50test-target: testsuites/validation/tc-sem-ident.c
51type: test-case
Note: See TracBrowser for help on using the repository browser.