summaryrefslogtreecommitdiffstats
path: root/testsuites/validation/tc-signal-send.c (unfollow)
Commit message (Collapse)AuthorFilesLines
2023-07-21testsuites: Remove stray ';'Sebastian Huber1-2/+2
2023-05-20Update company nameSebastian Huber1-1/+1
The embedded brains GmbH & Co. KG is the legal successor of embedded brains GmbH.
2023-03-13validation: Derive names from item UIDsSebastian Huber1-4/+4
Use the item UID converted to CamelCase for Doxygen group names and testsuite names. Update #3716.
2022-03-24validation: Test Signal ManagerSebastian Huber1-2/+4
The test source code is generated from specification items by the "./spec2modules.py" script contained in the git://git.rtems.org/rtems-central.git Git repository. Please read the "How-To" section in the "Software Requirements Engineering" chapter of the RTEMS Software Engineering manual to get more information about the process. Update #3716.
2021-09-02validation: Improve generated test codeSebastian Huber1-63/+84
Move the transition map members of the test context to a dedicated structure. Move the transition variant pre-condition prepare, action, and post-condition checks to a separate function to reduce the indentation level and allow skipping of transition variants.
2021-05-14validation: Add support librarySebastian Huber1-1/+1
Add a library for support functions used by validation tests. Rename tc-support.* to tx-support.* since this file does not contain test cases.
2021-05-07validation: Fix handling of N/A pre-conditionsSebastian Huber1-50/+3
In the action requirements, some pre-conditions are not applicable depending on the state of other pre-conditions. There is no particular order in the pre-conditions, so we have to check the N/A status individually.
2021-04-07validation: Fix unused variable warningSebastian Huber1-3/+2
Fix warning: testsuites/validation/tc-signal-send.c:634:21: warning: unused variable 'sc' [-Wunused-variable]
2021-03-23validation: Use support functionsSebastian Huber1-67/+15
2021-03-19validation: Reduce source code/rodata sizeSebastian Huber1-356/+107
Use a common wording for the tests. Use the new templates for action requirements described in the RTEMS Software Engineering manual.
2021-03-08validation: Use common wordingSebastian Huber1-1/+1
2021-03-02validation: Format comment blocksSebastian Huber1-14/+10
2021-03-01validation: Add comments to signal testsSebastian Huber1-0/+78
2021-02-20validation: Add signal manager testsSebastian Huber1-0/+1146
Update #4244.