summaryrefslogtreecommitdiffstats
path: root/testsuites/validation/tc-task-construct-errors.c (unfollow)
Commit message (Collapse)AuthorFilesLines
2022-03-24validation: Test Task ManagerSebastian Huber1-1207/+0
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-05-07validation: Fix handling of N/A pre-conditionsSebastian Huber1-104/+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-23rtems: Check for NULL config in task constructSebastian Huber1-130/+220
Since there are already excessive NULL pointer checks in the Classic API, do this also in rtems_task_construct(). Update #3959.
2021-03-19validation: Reduce source code/rodata sizeSebastian Huber1-3569/+204
Use a common wording for the tests. Use the new templates for action requirements described in the RTEMS Software Engineering manual.
2021-03-16validation: Task create/constructSebastian Huber1-0/+1
Run the task create/construct tests also on validation test suite 1 which has exactly one processor configured.
2021-03-11validation: Improve wordingSebastian Huber1-1/+1
2021-03-11validation: Use common wordingSebastian Huber1-399/+400
2021-03-08validation: Use common wordingSebastian Huber1-1/+2
2021-03-05validation: Use common wordingSebastian Huber1-2/+2
2021-03-02validation: Format comment blocksSebastian Huber1-14/+13
2021-03-01validation: Add comments to task testsSebastian Huber1-0/+123
2021-03-01validation: Improve task construct error testsSebastian Huber1-521/+1353
2021-02-26score: Fix thread initializationSebastian Huber1-850/+2101
Close the thread object if a thread create extension fails. Also call the delete extension to avoid resource leaks in early extensions if a late extension fails. Close #4270.
2021-02-08validation: Tweak construct error testsSebastian Huber1-107/+107
Unify the state names across tests and make sure the state names have a similar length.
2021-01-25Improve file header comment in generated filesSebastian Huber1-3/+7
2020-11-12Improve automatically generated warningSebastian Huber1-5/+4
2020-10-08validation: Improve file header commentSebastian Huber1-4/+9
2020-10-01rtems: Canonicalize name and id checksSebastian Huber1-96/+96
Check the name followed by the id check in all create directives. Compare pointers against NULL. Fix formatting.
2020-09-17validation: rtems_task_construct() errorsSebastian Huber1-0/+2367
This is the first test case generated from a specification item in the rtems-central repository. Update #3959.