summaryrefslogtreecommitdiffstats
path: root/testsuites/tmtests/tmfine01 (unfollow)
Commit message (Collapse)AuthorFilesLines
2022-04-07testsuites/tmtests/*: Change license to BSD-2Joel Sherrill1-3/+22
Updates #3053.
2022-03-10bsps/testsuites/: Scripted embedded brains header file clean upJoel Sherrill1-6/+0
Updates #4625.
2021-03-16rtems: Require RTEMS_PRIORITY for MrsP semaphoresSebastian Huber1-1/+2
MrsP semaphores are a generalization of the priority ceiling semaphores for SMP configurations. Priority ceiling semaphores are required to use the priority task wait queue discipline. Require this discipline also for MrsP semaphores. Close #4347.
2020-07-23libtest: <rtems/test.h> to <rtems/test-info.h>Sebastian Huber1-1/+1
Rename this header file to later move <t.h> to <rtems/test.h>. The main feature provided by <rtems/test-info.h> is the output of standard test information which is consumed by the RTEMS Tester. Update #3199.
2020-04-16Canonicalize config.h includeSebastian Huber1-1/+1
Use the following variant which was already used by most source files: #ifdef HAVE_CONFIG_H #include "config.h" #endif
2019-12-11rtems: Simplify semaphore configurationSebastian Huber1-2/+0
The MrsP semaphore implementation predates the addition of self-contained synchronization objects. At this time, the potential memory reduction was justified considering the more complex configuration and additional use of the workspace. With the availability of self-contained synchronization options, e.g. POSIX mutexes, this is no longer justified. Memory constrained applications should use the self-contained synchronization objects. Remove the CONFIGURE_MAXIMUM_MRSP_SEMAPHORES configuration option. This has only an impact on applications which use SMP and a large number of scheduler instances. Update #3833.
2018-04-10testsuite/tmtests: Merged nested Makefile.am files into one Makefile.amChris Johns1-19/+0
This change is part of the testsuite Makefile.am reorganization. Update #3382
2017-11-06tests: Use simple console driverSebastian Huber1-1/+1
Update #3170. Update #3199.
2017-10-28tests: Remove TEST_INITSebastian Huber1-2/+0
The TEST_EXTERN is a used only by the system.h style tests and they use CONFIGURE_INIT appropriately. Update #3170. Update #3199.
2017-10-24tmtests/tmfine01: Reduce test context sizeSebastian Huber1-0/+4
Reduce test context size in non-SMP configurations. Close #3200.
2017-10-23testsuite: Use printk for all test output where possible.Chris Johns1-0/+2
- Remove the printf support leaving the direct printk support configured with TESTS_USE_PRINTK and all other output goes via a buffered vsniprintf call to printk. - Control the test's single init for functions and global data with TEST_INIT and not CONFIGURE_INIT. They are now separate. Updates #3170.
2017-10-18tmtests/tmfine01: Add test casesSebastian Huber3-2119/+4188
Update #2674. Update #3112. Update #3113. Update #3114. Update #3115.
2017-02-14Rename CONFIGURE_SMP_MAXIMUM_PROCESSORSSebastian Huber1-1/+1
Rename CONFIGURE_SMP_MAXIMUM_PROCESSORS to CONFIGURE_MAXIMUM_PROCESSORS since the SMP part is superfluous. Update #2894.
2017-02-02Remove CONFIGURE_SMP_APPLICATIONSebastian Huber1-2/+0
Enable the SMP support if CONFIGURE_SMP_MAXIMUM_PROCESSORS > 1. Update #2893.
2016-11-10powerpc: Add _CPU_Get_current_per_CPU_control()Sebastian Huber1-2100/+2100
Add _CPU_Get_current_per_CPU_control() on SMP configurations. Use SPRG0 for the current per-CPU control. This reduces the code size by three instructions and is slightly faster. Update #2805.
2016-11-09score: Inline some SMP lock operations by defaultSebastian Huber1-2100/+2100
The SMP ticket lock release turned out to be suitable for inlining, e.g. a hand full of instructions, no branches. The changes in the screen files do not reflect the changes due to this commit. However, they are now up to date. Obtained on a T4240 running at 1.5GHz using GCC 7.0.0 20161108..
2016-11-04score: Optimize self-contained mutexesSebastian Huber1-2100/+2100
2016-11-03tmtests/tmfine01: Update screen fileSebastian Huber2-1800/+2194
Add plot script.
2016-10-10tmfine01: Add self-contained mutex test caseSebastian Huber1-1/+46
This demonstrates the effect of false cache line sharing in case of Classic mutexes.
2015-10-15Delete CONFIGURE_USE_IMFS_AS_BASE_FILESYSTEMSebastian Huber1-2/+0
This define accidentally re-appeared.
2015-03-17testsupport: Add worker setup handlerSebastian Huber1-1/+1
Add rtems_test_parallel_get_task_id().
2015-03-16tmtests/tmfine01: New testSebastian Huber4-0/+2610