summaryrefslogtreecommitdiffstats
path: root/spec/req/rtems/message
diff options
context:
space:
mode:
Diffstat (limited to 'spec/req/rtems/message')
-rw-r--r--spec/req/rtems/message/ident.yml15
-rw-r--r--spec/req/rtems/message/val/ident.yml49
2 files changed, 0 insertions, 64 deletions
diff --git a/spec/req/rtems/message/ident.yml b/spec/req/rtems/message/ident.yml
deleted file mode 100644
index 04daf90d..00000000
--- a/spec/req/rtems/message/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/message/ident
-rationale: null
-references: []
-requirement-type: functional
-text: |
- The ${/if/rtems/message/ident:/name} directive shall identify an Classic API
- message queue class object by its name as specified by ${../ident}.
-type: requirement
diff --git a/spec/req/rtems/message/val/ident.yml b/spec/req/rtems/message/val/ident.yml
deleted file mode 100644
index 436c1b9d..00000000
--- a/spec/req/rtems/message/val/ident.yml
+++ /dev/null
@@ -1,49 +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:/test-run}(
- id_local_object,
- ClassicMessageIdentAction
- );
- checks: []
- description: |
- Run the generic object identification tests for Classic API message queue
- class objects defined by ${../../ident}.
- links: []
-test-brief: Test the ${/if/rtems/message/ident:/name} directive.
-test-description: null
-test-epilogue: null
-test-fixture: null
-test-header: null
-test-includes: []
-test-local-includes:
-- tr-object-ident.h
-test-prologue: |
- rtems_status_code sc;
- rtems_id id_local_object;
-
- sc = rtems_message_queue_create(
- ClassicObjectIdentName,
- 1,
- 1,
- RTEMS_DEFAULT_ATTRIBUTES,
- &id_local_object
- );
- T_assert_rsc_success( sc );
-test-support: |
- static rtems_status_code ClassicMessageIdentAction(
- rtems_name name,
- uint32_t node,
- rtems_id *id
- )
- {
- return rtems_message_queue_ident( name, node, id );
- }
-test-target: testsuites/validation/tc-message-ident.c
-type: test-case