summaryrefslogtreecommitdiffstats
path: root/testsuites (follow)
Commit message (Collapse)AuthorAgeFilesLines
* build: Remove EXTRA_DISTSebastian Huber2018-04-047-30/+0
| | | | | A "make dist" is not supported. So, it makes no sense to have pure "make dist" related stuff in the Makefile.am.
* config: Use new scheduler configuration definesSebastian Huber2018-03-1219-308/+308
| | | | Update #3325.
* sptests/sp19: Fix test output methodsSebastian Huber2018-03-082-2/+14
| | | | Do not use fprintf() in non-fp tasks.
* libtests/capture01: Fix configurationSebastian Huber2018-03-071-0/+1
|
* smptests: Fix obsolete FIXME comments/codeSebastian Huber2018-03-072-4/+2
|
* Add a simple task console driverSebastian Huber2018-03-064-20/+6
| | | | Close #3320.
* spglobalcon02: New testSebastian Huber2018-03-066-0/+152
| | | | Update #3319.
* ada/sp04: Fix test failure due to compiler optiSebastian Huber2018-02-221-0/+1
| | | | | The SPTEST.RUN_COUNT must be volatile since it is changed outside of the procedure scope by the thread switch extension.
* fsclose01: Fix task mode, use attributeSebastian Huber2018-02-091-1/+2
| | | | Update #1971.
* fsclose01: Use floating-point taskSebastian Huber2018-02-091-1/+1
| | | | | | The tmpfile() uses sprintf(). Update #1971.
* tests: Support %g print format specifierSebastian Huber2018-02-092-0/+2
|
* libdl: Use self-contained recursive mutexSebastian Huber2018-02-071-1/+1
| | | | Update #2843.
* termios: Remove obsolete configuration optionsSebastian Huber2018-02-0510-33/+0
| | | | Update #2843.
* fsclose01: Add tmpfile() test caseSebastian Huber2018-02-052-3/+28
| | | | Close #1971.
* pipe: Use self-contained mutexSebastian Huber2018-02-021-50/+0
| | | | Update #2843.
* termios: Use self-contained objectsSebastian Huber2018-02-0220-301/+5
| | | | Update #2840.
* Add RTEMS thread APISebastian Huber2018-02-026-0/+281
| | | | Update #2843.
* score: Introduce new monotonic clockSebastian Huber2018-02-023-4/+3
| | | | | | | | Rename PER_CPU_WATCHDOG_MONOTONIC to PER_CPU_WATCHDOG_TICKS. Add new PER_CPU_WATCHDOG_MONOTONIC which is based on the system uptime (measured by timecounter). Close #3264.
* score: Optimize watchdog tickleSebastian Huber2018-02-021-1/+9
| | | | | | | Avoid unnecessary lock acquire/release operations. Get realtime via timecounter only if necessary. Update #3264.
* smptests/smpopenmp01: New testSebastian Huber2018-02-027-0/+510
|
* spsyslock01: Fix object compareSebastian Huber2018-02-021-5/+59
| | | | | | | Due to structure internal padding the use of memcmp() may lead to sporadic test failures. Update #3082.
* sp20: Fix print buffer sizeSebastian Huber2018-02-021-2/+2
| | | | | | | | | | There were two issues: 1. The buffer size must be divisible by 8 on 64-bit targets 2. It must be large enough to service the begin of start message. Update #3082.
* smpschededf01: Use rtems_test_busy_cpu_usage()Sebastian Huber2018-02-021-11/+5
| | | | | The rtems_test_busy() is not accurate enough and may lead to sporadic test failures.
* smpschedaffinity04: Fix configurationSebastian Huber2018-02-021-0/+2
|
* smpcapture01: Fix configurationSebastian Huber2018-02-021-0/+2
|
* 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.