source: rtems-central/spec/rtems/timer/val/ident.yml @ c970d63

Last change on this file since c970d63 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.1 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-local:/test-run}(
11      id_local_object,
12      ClassicTimerIdentAction
13    );
14  checks: []
15  description: |
16    Run the generic object identification tests for Classic API timer class
17    objects defined by ${../../req/ident-local}.
18  links: []
19test-brief: Test the ${../if/ident:/name} directive.
20test-description: null
21test-epilogue: |
22  sc = rtems_timer_delete( id_local_object );
23  T_rsc_success( sc );
24test-fixture: null
25test-header: null
26test-includes: []
27test-local-includes:
28- tr-object-ident-local.h
29test-prologue: |
30  rtems_status_code sc;
31  rtems_id id_local_object;
32
33  sc = rtems_timer_create(
34    ClassicObjectLocalIdentName,
35    &id_local_object
36  );
37  T_assert_rsc_success( sc );
38test-support: |
39  static rtems_status_code ClassicTimerIdentAction(
40    rtems_name name,
41    rtems_id  *id
42  )
43  {
44    return rtems_timer_ident( name, id );
45  }
46test-target: testsuites/validation/tc-timer-ident.c
47type: test-case
Note: See TracBrowser for help on using the repository browser.