summaryrefslogtreecommitdiffstats
path: root/testsuites (follow)
Commit message (Collapse)AuthorAgeFilesLines
* sptests/sp68: Avoid use of internal variablesSebastian Huber2015-04-161-10/+12
|
* score: Add _ISR_lock_Flash()Sebastian Huber2015-04-161-0/+2
|
* spcpuset01: Reduce output to reduce run-timeJoel Sherrill2015-04-144-4045/+12
|
* sp13: Update configuration to account for messages on fourth message queueJoel Sherrill2015-04-142-1/+6
|
* Add test assertion for allocator mutex being unlockedJoel Sherrill2015-04-143-20/+54
| | | | | | | | | | The Allocator Mutex should not be locked outside a tested service call. In an SMP test or heavily multithreaded test, this is possible since another thread could have the lock for an extended period of time but this is not the norm for the tests. updates 2319.
* score: Add Watchdog_HeaderSebastian Huber2015-04-133-8/+8
| | | | | | | This type is intended to encapsulate all state to manage a watchdog chain. Update #2307.
* rtems: Atomically suspend/resume tasksSebastian Huber2015-04-081-1/+1
|
* fstests/fsfseeko01: Fix for long == off_tSebastian Huber2015-04-081-4/+11
| | | | Close #2317.
* disable-intrcritical-tests.tcfg: New fileJoel Sherrill2015-04-011-0/+30
| | | | | | This file contains the list of interrupt critical section tests. There are some simulators these are unreliable on so they should just be ignored.
* psxtmtests: Use timeout in more distant futureAlexander Krutwig2015-03-311-2/+3
| | | | Adds future compatibility with strict monontonic software timestamps.
* fstests: Increase stack size for symlink loop testAlexander Krutwig2015-03-311-1/+1
|
* fstests/fssymlink: TypoAlexander Krutwig2015-03-311-1/+1
|
* testsuites: dl02 needs an FPU init task.Chris Johns2015-03-311-1/+1
|
* smpmigration01: Delete timing dependent assertSebastian Huber2015-03-251-3/+6
| | | | | | The cycles per runner depends too heavily on the hardware timing making the assert unreliable. Delete runner tasks before we print out the status.
* smptests/smpfatal08: Workaround for QorIQ BSPsSebastian Huber2015-03-241-0/+8
|
* score: Add thread priority change handlerSebastian Huber2015-03-241-2/+2
| | | | | | | | | | Since the thread current priority change and thread queue requeue is performed in one critical section it is possible to simplify the thread queue requeue procedure. Add a thread queue agnostic thread priority change handler so that we are able to use alternative thread queue implementations. Update #2273.
* testsuites/sptests/sp54/init.c: Add cast to avoid warningJoel Sherrill2015-03-241-1/+1
|
* samples/minimum/init.c: Add cast to avoid warningJoel Sherrill2015-03-241-1/+1
|
* sptls03/init.c: Make type and constants uint32_t to avoid overflow warningsJoel Sherrill2015-03-241-4/+4
|
* sptls01/init.c: Use larger data types for valuesJoel Sherrill2015-03-241-5/+5
|
* sptests/spwatchdog/init.c: Avoid integer overflowJoel Sherrill2015-03-241-2/+8
|
* sptests/spedfsched02: Reduce stack space usage to fix on smaller targetsJoel Sherrill2015-03-242-3/+1
|
* sptests/spatomic01/init.c: Avoid integer overflowJoel Sherrill2015-03-241-8/+11
|
* sptests/sp34/changepri.c: Correct printf() warningJoel Sherrill2015-03-241-4/+5
|
* sptests/sp33/init.c: Correct printf() warningJoel Sherrill2015-03-241-2/+3
|
* sptests/sp20: Reduce memory requirementsJoel Sherrill2015-03-242-3/+1
| | | | | This was checked on sparc/sis. If this fails on other targets, then the task stack sizes needs to be reevaluated.
* sptests/sp13/system.h: Fine tune message buffer configuration to avoid ↵Joel Sherrill2015-03-241-13/+17
| | | | integer overflow
* sptests/sp12/pritask.c: Correct printf() warningJoel Sherrill2015-03-241-3/+4
|
* psxconfig01/init.c: Correct pointer/integer size warningJoel Sherrill2015-03-241-1/+1
|
* psxtests/psx15/init.c: Correct printf() warningJoel Sherrill2015-03-241-1/+3
|
* malloctest/init.c: Fix use uninitialized warningJoel Sherrill2015-03-241-0/+3
|
* testsuites/psxtests/psxsignal03/init.c: Fix line wrapJoel Sherrill2015-03-221-1/+5
|
* testsuites/testdata: Add sets to disable all jffs2 and mrfs testsJoel Sherrill2015-03-222-0/+25
|
* score: Simplify debug code and use _Assert()Sebastian Huber2015-03-221-1/+1
|
* sptests/spintrcritical23: Fix warningsSebastian Huber2015-03-211-8/+10
|
* Replace www.rtems.com with www.rtems.orgSebastian Huber2015-03-2038-38/+38
|
* score: Fix _Thread_Change_priority()Sebastian Huber2015-03-206-0/+225
| | | | | | | | | | Atomically update the current priority of a thread and the wait queue. Serialize the scheduler update in a separate critical section with a generation number. New test sptests/spintrcritical23. Close #2310.
* spcbssched03/tasks_periodic.c: Fixed now used before set warningJoel Sherrill2015-03-171-0/+1
|
* sptests misc: Update to not use deprecated methodsJoel Sherrill2015-03-176-18/+18
|
* tests misc: Disable deprecated method usage warning when intentionalJoel Sherrill2015-03-175-195/+232
| | | | | These tests intentionally use the deprecated method. Eventually this code in the sections can be deleted.
* tm07: Split some code into new spnotepad02.Joel Sherrill2015-03-1710-22/+116
| | | | | | Use of deprecated notepads in sp07 needs further work. Updates #2305.
* testsuites/samples/minimum/init.c: Notepads no longer need to be disabledJoel Sherrill2015-03-171-7/+0
| | | | They are disabled by default as they are deprecated.
* testsupport: Add worker setup handlerSebastian Huber2015-03-172-12/+25
| | | | Add rtems_test_parallel_get_task_id().
* tmtests/tmfine01: New testSebastian Huber2015-03-166-0/+2612
|
* cpukit: deprecate notepadsGedare Bloom2015-03-106-1/+9
| | | | | | | | | | | | | | | Deprecate Classic API Notepads. Mark task_set/get_note() with the deprecated attribute, and also mark the notepads field. Replace disable with enable option for notepads in confdefs.h, and make notepads disabled by default. The previous option CONFIGURE_DISABLE_CLASSIC_API_NOTEPADS is now unused and will emit a compile-time warning. A new option CONFIGURE_ENABLE_CLASSIC_API_NOTEPADS is available to turn on notepads, but it also will emit a compile-time warning to indicate that notepads are deprecated. Closes #2265
* libcsupport: Delete superfluous _gettimeofday()Sebastian Huber2015-03-101-7/+0
|
* sysconf: Add _SC_NPROCESSORS_(CONF|ONLN)Sebastian Huber2015-03-091-0/+9
|
* libtests/stringto01: Fix for GCC 5.0Sebastian Huber2015-03-092-13/+23
|
* Temporarily disable libdl for h8300Joel Sherrill2015-03-061-1/+4
| | | | | | | The h8300 gets a linking error for the dl0* tests. This temporarily disables libdl until that can be investigated. updates 2284.
* dltests-broken-on-this-bsp.tcfg: New file used for dl* tests work aroundJoel Sherrill2015-03-061-0/+8
|