summaryrefslogtreecommitdiffstats
path: root/testsuites/validation/tc-intr-entry-install.c (unfollow)
Commit message (Collapse)AuthorFilesLines
2023-12-19tm27: Add TM27_INTERRUPT_VECTOR_ALTERNATIVESebastian Huber1-6/+3
The TM27 support may define TM27_INTERRUPT_VECTOR_ALTERNATIVE to provide an alternative software generated interrupt request which is raised by _TM27_Raise_alternative() and cleared by _TM27_Clear_alternative(). Both functions shall return an RTEMS status code. This interrupt vector may be used to test the interrupt controller support on targets which do not provide generic software generated interrupts. Update #3716.
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/+3
Use the item UID converted to CamelCase for Doxygen group names and testsuite names. Update #3716.
2022-12-02bsps/irq: Rename handler in dispatch tableSebastian Huber1-2/+2
The name handler table was a bit misleading after the last rework. Rename it to distach table. Update the documentation accordingly. Update #4769.
2022-11-09validation: Properly teardown test casesSebastian Huber1-1/+30
Make sure that the state of the testable interrupt vector is restored to the state at the test case begin.
2022-03-24validation: Test Interrupt ManagerSebastian Huber1-60/+166
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.
2022-03-24validation: Improve support librarySebastian Huber1-1/+1
Update #3716.
2021-09-02validation: Improve generated test codeSebastian Huber1-123/+120
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-07-26validation: Test rtems_interrupt_entry_install()Sebastian Huber1-0/+1364
Update #3269.