summaryrefslogtreecommitdiffstats
path: root/testsuites (unfollow)
Commit message (Collapse)AuthorFilesLines
2021-11-29*/aclocal/*: Remove remnants of autoconf/automae build systemJoel Sherrill22-521/+0
Updates #4081.
2021-11-23score: Simplify thread wait state handlingSebastian Huber4-20/+6
Remove the THREAD_WAIT_STATE_READY_AGAIN and simply use the initial value to indicate that a thread does not wait on something. Rename THREAD_WAIT_FLAGS_INITIAL to THREAD_WAIT_STATE_READY. This change is necessary so that _Thread_Continue() can be called for threads which never waited on something (for example dormant threads). Update #4546.
2021-11-23score: Add node to insert to Chain_Node_orderSebastian Huber1-1/+7
This allows to use additional members of the nodes for comparision. Update #4534.
2021-11-18rtems: Use RTEMS_WHO_AM_I for rtems_task_ident()Sebastian Huber22-23/+23
2021-11-15rtems: Simplify rtems_semaphore_set_priority()Sebastian Huber1-1/+1
Do not write to the object referenced by old_priority in error paths. This is in line with other directives.
2021-11-15score: Port large time delta support to RTEMSSebastian Huber1-2/+2
2021-11-15score: Introduce CPU budget operationsSebastian Huber1-0/+8
This patch set replaces the CPU budget algorithm enumeration with a set of CPU budget operations which implement a particular CPU budget algorithm. This helps to hide the CPU budget algorithm implementation details from the general thread handling. The CPU budget callouts are turned into CPU budget operations. This slightly reduces the size of the thread control block. All schedulers used the default scheduler tick implementation. The tick scheduler operation is removed and the CPU budget operations are directly used in _Watchdog_Tick() if the executing thread uses a CPU budget algorithm. This is performance improvement for all threads which do not use a CPU budget algorithm (default behaviour).
2021-11-03libtests/calloc.c: Fix reported memory leakzack leung1-1/+3
This fix came from Code Inspector, flagged by one of the analysis that was done. This test code is compiled only but better to address the issues so future static analysis reports will not include it.
2021-10-29testsuite: Add machine exception signal map testKinsey Moore4-0/+138
Add a test to verify that mapping of machine exceptions to POSIX signals operates properly when the application requests it.
2021-10-29testsuite: Add machine exception resume testKinsey Moore3-0/+98
Add a test to verify that intercepted exceptions can be resolved and execution can be resumed.
2021-10-25sptests/sp69: Remove test caseSebastian Huber1-25/+0
This error condition no longer exists. Update #4528.
2021-10-11Add support for IDLE Thread stack allocatorJoel Sherrill6-0/+228
Add a stack allocator hook specifically for allocation of IDLE thread stacks. This allows the user to decide if IDLE thread stacks are statically allocated or handled by the same custom allocator mechanism as other thread stacks. Closes #4524.
2021-10-11score: _Thread_queue_Surrender_priority_ceiling()Sebastian Huber1-0/+43
Do not use a direct thread dispatch in _Thread_queue_Surrender_priority_ceiling() since it may be used in condition variables using POSIX mutexes. Close #4526.
2021-10-04testsuites/fstests: Fix uninitialized utimbuf structsAlex White2-2/+2
The utimbuf structs in fsimfsconfig01 and fsimfsconfig02 were being passed to utime uninitialized. This did not cause problems until utime was changed to use utimensat behind the scenes. Now that utimensat is called, the values of the utimbuf struct are checked, and EINVAL is set for invalid values. The utimebuf structs in these tests could contain invalid values since they are uninitialized. By zero-initializing the utimbuf structs, we ensure that they pass the checks in utimensat and that errno is set to the expected ENOTSUP.
2021-09-21cpukit: Add AArch64 SMP SupportKinsey Moore1-1/+1
This adds SMP support for AArch64 in cpukit and for the ZynqMP BSPs.
2021-09-21testsuites/smpmulticast01: Enforce step orderingKinsey Moore1-0/+1
The order in which step checks for 1 and 2 are not rigidly defined and may actually occur in either order depending on how the threads execute. This waits for the job to complete to enforce the existing ordering.
2021-09-21build: Remove old build systemSebastian Huber147-11195/+0
Close #3250. Close #4081.
2021-09-20pxcdevctl: Adjust for standardRyan Long1-23/+46
psxdevctl is supposed to return the value in errno. Before, it was returning -1 and setting errno. Changed the tests to reflect these changes. Added code from RRADE's posix_devctl.c. Closes #4506
2021-09-06score: Change TOD_LATEST_YEAR to 2099Sebastian Huber2-42/+9
This simplifies the implementation a bit. Declare _TOD_Days_to_date[] in <rtems/score/todimpl.h>. Make _TOD_Days_per_month[] and _TOD_Days_since_last_leap_year[] static. Update #4338.
2021-09-06score: Limit the CLOCK_REALTIME settingSebastian Huber1-0/+14
Limit the CLOCK_REALTIME setting to ensure that the CLOCK_REALTIME is defined for a system uptime of at least 114 years.
2021-09-02Improve test of rtems_interrupt_get_affinity()Sebastian Huber1-18/+21
Use a CPU set which is larger than the internal processor set representation.
2021-09-02validation: Improve generated test codeSebastian Huber20-1331/+1679
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-08-30psxtests/psxconfstr: Fix test caseSebastian Huber1-13/+12
Update #3373.
2021-08-30smpfatal01: Fix test time out on sparc/leon3Sebastian Huber1-1/+1
End the test on the processor which triggers the test condition. This avoids endless power down loops in the sparc/leon3 BSP.
2021-08-18confstr() support for RTEMSEshan dhawan5-0/+126
Closes #3373 confstr() style update Signed-off-by: Eshan Dhawan <eshandhawan51@gmail.com>
2021-08-12score: Replace priority prepend it with an enumSebastian Huber1-33/+36
Use the new Priority_Group_order enum instead of a boolean to indicated if a priority should be inserted as the first or last node into its priority group. This makes the code more expressive. It is also a bit more efficient since a branch in _Scheduler_Node_set_priority() is avoided and a simple bitwise or operation can be used.
2021-08-11Test needed for timer_create with CLOCK_MONOTONCZacchaeus Leung2-0/+31
the timer_create() method can use CLOCK_MONOTONIC but there was no test for this. Also it implements the functionality to create a CLOCK_MONOTONIC timer and gettime() . Closes #3888
2021-08-09Turn off executable permissions for a number of source filesJoel Sherrill134-0/+0
Cloning under Cygwin turned off executable permission on these files. This shows them as modified even though they have not explicitly been touched. Executable permission should not have been on for these files so this is just a minor clean up.
2021-07-30sptests: CONFIGURE_MEMORY_PER_TASK_FOR_SCHEDULERSebastian Huber2-4/+0
Remove obsolete CONFIGURE_MEMORY_PER_TASK_FOR_SCHEDULER application configuration option which is unsupported since commit 69aa33490b1cd357519ab70b15ad150e11bb752e.
2021-07-29score: Change _SMP_Send_message() parameter typeSebastian Huber2-5/+11
Use the processor control to specify the target processor since this is what the callers have available.
2021-07-29score: Add _Per_CPU_Submit_job()Sebastian Huber2-10/+3
2021-07-28score: Simplify SMP processor state handlingSebastian Huber4-23/+61
The per-CPU states which control the SMP system initialization were added quite early during the SMP support development. Replace this initial implementation with a simplified one. There is no longer a global SMP lock required which serialized the state changes of all processors. The new implementation better integrates with the per-CPU jobs.
2021-07-28score: Remove processor event broadcast/receiveSebastian Huber5-12/+10
Remove _CPU_SMP_Processor_event_broadcast() and _CPU_SMP_Processor_event_receive(). These functions are hard to use since they are subject to the lost wake up problem.
2021-07-28score: Remove _Internal_errors_What_happenedSebastian Huber1-2/+0
Users have access to the fatal error source and code though the fatal error extension. The user-specific fatal error handling should be done in statically initialized fatal error handlers. The _Internal_errors_What_happened was updated after the fatal error extension. In addition, there was no API to get the information stored in _Internal_errors_What_happened. In SMP configurations, this object could contain a mix of different fatal errors. Remove this object to save some bytes of storage.
2021-07-26validation: Test rtems_interrupt_handler_iterate()Sebastian Huber1-0/+636
Update #3269.
2021-07-26validation: Test rtems_interrupt_set_affinity()Sebastian Huber1-0/+670
Update #3269.
2021-07-26validation: Test rtems_interrupt_get_affinity()Sebastian Huber1-0/+683
Update #3269.
2021-07-26validation: Test rtems_interrupt_raise_on()Sebastian Huber3-2/+721
Update #3269.
2021-07-26validation: Test rtems_interrupt_is_pending()Sebastian Huber1-0/+629
Update #3269.
2021-07-26validation: Test rtems_interrupt_clear()Sebastian Huber1-0/+586
Update #3269.
2021-07-26validation: Test rtems_interrupt_raise()Sebastian Huber1-0/+576
Update #3269.
2021-07-26validation: Test rtems_interrupt_entry_remove()Sebastian Huber1-0/+1432
Update #3269.
2021-07-26validation: Test rtems_interrupt_entry_install()Sebastian Huber1-0/+1364
Update #3269.
2021-07-26validation: Test rtems_interrupt_vector_disable()Sebastian Huber1-0/+632
Update #3269.
2021-07-26validation: Test rtems_interrupt_vector_enable()Sebastian Huber1-0/+638
Update #3269.
2021-07-26validation: rtems_interrupt_vector_is_enabled()Sebastian Huber1-0/+627
Update #3269.
2021-07-26validation: Test rtems_interrupt_get_attributes()Sebastian Huber1-0/+440
Update #3269.
2021-07-26validation: GetTestableInterruptVector()Sebastian Huber2-0/+49
Update #3269.
2021-07-26validation: GetValidInterruptVectorNumber()Sebastian Huber2-0/+31
Update #3269.
2021-07-26validation: HasInterruptVectorEntriesInstalled()Sebastian Huber2-0/+81
Update #3269.