summaryrefslogtreecommitdiffstats
path: root/spec/req/rtems/ratemon
diff options
context:
space:
mode:
Diffstat (limited to 'spec/req/rtems/ratemon')
-rw-r--r--spec/req/rtems/ratemon/ident.yml15
-rw-r--r--spec/req/rtems/ratemon/val/ident.yml45
2 files changed, 0 insertions, 60 deletions
diff --git a/spec/req/rtems/ratemon/ident.yml b/spec/req/rtems/ratemon/ident.yml
deleted file mode 100644
index 592c7655..00000000
--- a/spec/req/rtems/ratemon/ident.yml
+++ /dev/null
@@ -1,15 +0,0 @@
-SPDX-License-Identifier: CC-BY-SA-4.0
-copyrights:
-- Copyright (C) 2020 embedded brains GmbH (http://www.embedded-brains.de)
-enabled-by: true
-functional-type: function
-links:
-- role: interface-function
- uid: /if/rtems/ratemon/ident
-rationale: null
-references: []
-requirement-type: functional
-text: |
- The ${/if/rtems/ratemon/ident:/name} directive shall identify an Classic API
- rate monotonic class object by its name as specified by ${../ident-local}.
-type: requirement
diff --git a/spec/req/rtems/ratemon/val/ident.yml b/spec/req/rtems/ratemon/val/ident.yml
deleted file mode 100644
index 8022b8df..00000000
--- a/spec/req/rtems/ratemon/val/ident.yml
+++ /dev/null
@@ -1,45 +0,0 @@
-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: ../ident
-test-actions:
-- action: |
- ${../../ident-local:/test-run}(
- id_local_object,
- ClassicRatemonIdentAction
- );
- checks: []
- description: |
- Run the generic object identification tests for Classic API rate monotonic
- class objects defined by ${../../ident-local}.
- links: []
-test-brief: Test the ${/if/rtems/part/ident:/name} directive.
-test-description: null
-test-epilogue: null
-test-fixture: null
-test-header: null
-test-includes: []
-test-local-includes:
-- tr-object-ident-local.h
-test-prologue: |
- rtems_status_code sc;
- rtems_id id_local_object;
-
- sc = rtems_rate_monotonic_create(
- ClassicObjectLocalIdentName,
- &id_local_object
- );
- T_assert_rsc_success( sc );
-test-support: |
- static rtems_status_code ClassicRatemonIdentAction(
- rtems_name name,
- rtems_id *id
- )
- {
- return rtems_rate_monotonic_ident( name, id );
- }
-test-target: testsuites/validation/tc-ratemon-ident.c
-type: test-case