summaryrefslogtreecommitdiffstats
path: root/testsuites (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Avoid Newlib-specific _EXFUN()Sebastian Huber2018-01-291-5/+1
|
* ada: Introduce RTEMS.Size typeSebastian Huber2018-01-2915-32/+39
| | | | | | | Some time ago the Classic API object size related parameters were changed to use size_t. Reflect this in the Ada bindings. Update #3082.
* Remove make preinstallChris Johns2018-01-2540-38/+145
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | A speciality of the RTEMS build system was the make preinstall step. It copied header files from arbitrary locations into the build tree. The header files were included via the -Bsome/build/tree/path GCC command line option. This has at least seven problems: * The make preinstall step itself needs time and disk space. * Errors in header files show up in the build tree copy. This makes it hard for editors to open the right file to fix the error. * There is no clear relationship between source and build tree header files. This makes an audit of the build process difficult. * The visibility of all header files in the build tree makes it difficult to enforce API barriers. For example it is discouraged to use BSP-specifics in the cpukit. * An introduction of a new build system is difficult. * Include paths specified by the -B option are system headers. This may suppress warnings. * The parallel build had sporadic failures on some hosts. This patch removes the make preinstall step. All installed header files are moved to dedicated include directories in the source tree. Let @RTEMS_CPU@ be the target architecture, e.g. arm, powerpc, sparc, etc. Let @RTEMS_BSP_FAMILIY@ be a BSP family base directory, e.g. erc32, imx, qoriq, etc. The new cpukit include directories are: * cpukit/include * cpukit/score/cpu/@RTEMS_CPU@/include * cpukit/libnetworking The new BSP include directories are: * bsps/include * bsps/@RTEMS_CPU@/include * bsps/@RTEMS_CPU@/@RTEMS_BSP_FAMILIY@/include There are build tree include directories for generated files. The include directory order favours the most general header file, e.g. it is not possible to override general header files via the include path order. The "bootstrap -p" option was removed. The new "bootstrap -H" option should be used to regenerate the "headers.am" files. Update #3254.
* cdtest: Increase stack sizeSebastian Huber2018-01-221-0/+3
|
* psxchroot01: Force release of global locationsSebastian Huber2018-01-221-0/+6
| | | | | Free deferred locations before the greedy memory allocation. This test fails on powerpc/qoriq_e6500_64 otherwise.
* smptests: Fix configurationSebastian Huber2018-01-222-0/+2
| | | | Update #2843.
* smp03: Use floating-point tasksSebastian Huber2018-01-192-3/+2
| | | | This test uses sprintf().
* smp03: Use floating-point taskSebastian Huber2018-01-191-2/+1
| | | | This test uses sprintf().
* smpaffinity01: Use floating-point taskSebastian Huber2018-01-191-0/+1
| | | | This test uses sprintf().
* smp08: Use floating-point taskSebastian Huber2018-01-191-0/+1
| | | | This test uses sprintf().
* psxfile01: Use floating-point taskSebastian Huber2018-01-191-0/+1
| | | | This test uses fprintf().
* block06: Use floating-point taskSebastian Huber2018-01-191-0/+1
| | | | This test uses sprintf().
* fstests: Use floating-point taskSebastian Huber2018-01-191-0/+1
| | | | The fstests use snprintf().
* psxpasswd02: Use floating-point taskSebastian Huber2018-01-191-0/+1
| | | | This test uses sprintf().
* psxstat: Use floating-point taskSebastian Huber2018-01-191-0/+1
| | | | This test uses sprintf().
* psximfs02: Use floating-point taskSebastian Huber2018-01-191-0/+1
| | | | This test uses sprintf().
* spassoc01: Use floating-point taskSebastian Huber2018-01-191-0/+1
| | | | This test uses sprintf().
* tests: Use vprintk() in locked_printf()Sebastian Huber2018-01-191-1/+1
| | | | This avoids blocking output and the use of the floating-point unit.
* tests: Remove unused locked_printk()Sebastian Huber2018-01-192-23/+0
|
* smpmigration01: Enable floating-point outputSebastian Huber2018-01-191-0/+1
|
* fstests: Use floating-point taskSebastian Huber2018-01-191-0/+1
| | | | The fstests use snprintf().
* tests: Fix canonical-target-name.m4Sebastian Huber2018-01-021-0/+2
| | | | Update #3109.
* tm08: Do not use RTEMS_INTERRUPT_MASK for no reschedule caseJoel Sherrill2017-12-081-7/+10
| | | | Updates #3000.
* sp08: Disable RTEMS_INTERRUPT_MASK testing when SMP enabledJoel Sherrill2017-12-081-2/+2
| | | | Updates #3000.
* dosfs: Allow creating a file with similar name.Christian Mauderer2017-12-071-0/+25
| | | | | | | | If there is already a file with a long file name it isn't possible to create a second file which has a name that ends on the first files name (for example ets.beam and sets.beam). This patch fixes that. Update #3258.
* smpunsupported01: Add missing error check for rtems_task_modeJoel Sherrill2017-12-062-1/+13
| | | | | | Update test documentation to include more cases. Updates #3000.
* sptests/sp51: Delete semaphore after useSebastian Huber2017-12-061-0/+3
| | | | This ensures that the configured semaphore maximum is not exceeded.
* libio: Use API mutexSebastian Huber2017-12-061-2/+2
|
* dosfs: Fix files with same name as volume name.Christian Mauderer2017-12-051-1/+44
| | | | | | | Take care that a file in the root directory with the same name as the volume name can be found. Update #3257.
* ada: Check C and POSIX typesSebastian Huber2017-12-044-3/+187
| | | | Update #3256.
* score: Use self-contained API mutexSebastian Huber2017-12-043-11/+8
| | | | | | | | | | Use a self-contained recursive mutex for API_Mutex_Control. The API mutexes are protected against asynchronous thread cancellation. Add dedicated mutexes for libatomic and TOD. Close #2629. Close #2630.
* ada/sp09: Fix timer server test caseSebastian Huber2017-12-041-1/+1
| | | | A priority of zero is valid for the timer server.
* ada/sp09: Fix region test casesSebastian Huber2017-12-042-16/+17
|
* ada: Fix work_space_size() test supportSebastian Huber2017-12-041-1/+2
|
* ada/tm04: Account for task delete behaviour changeSebastian Huber2017-12-041-0/+9
|
* ada/sp19: Add missing FP attributeSebastian Huber2017-12-021-2/+2
|
* ada/sp07: Fix uninitialized variableSebastian Huber2017-12-011-0/+2
| | | | | | Bug was introduced by d5154d0f6a04f3b7ed59d9a09038576fe2640756. Updates #2493.
* ada: Fix user extension supportSebastian Huber2017-12-011-2/+2
|
* ada: Use CONFIGURE_DISABLE_SMP_CONFIGURATIONSebastian Huber2017-12-011-0/+2
| | | | | | Most Ada tests fail otherwise. Update #3020.
* ada/tm20: Account for optional heap protectionSebastian Huber2017-12-011-3/+3
| | | | | Reduce size of the big allocation block to account for the optional heap protection (RTEMS_DEBUG).
* ada/spname01: Fix several issuesSebastian Huber2017-12-013-9/+9
|
* ada: Add standard test begin/end messageSebastian Huber2017-12-01144-144/+324
|
* ada: Delete superfluous CONFIGURE_SPTESTSebastian Huber2017-12-0124-48/+0
|
* block06/init.c: Fix printf() format warningJoel Sherrill2017-11-291-5/+4
|
* Remove coverhd.hSebastian Huber2017-11-2480-166/+113
| | | | | | | This header file contained timing overhead values which are hard to maintain. Update #3254.
* libtests/malloctest: Fix 64-bit targetsSebastian Huber2017-11-241-4/+6
| | | | Update #3082.
* libtests/stringto01: Fix 64-bit targetsSebastian Huber2017-11-241-2/+2
| | | | Update #3082.
* sptests/splinkersets01: Fix 64-bit targetsSebastian Huber2017-11-241-4/+16
| | | | Update #3082.
* ada/sp04: Fix clock getSebastian Huber2017-11-241-1/+1
| | | | Update #2676.
* tests: Use exponential backoff in locked_vprintf()Sebastian Huber2017-11-221-3/+19
| | | | | Without the exponential backoff a livelock was observed on a QorIQ P2020 with test SMP 5.