summaryrefslogtreecommitdiffstats
path: root/testsuites (follow)
Commit message (Collapse)AuthorAgeFilesLines
* fsdsosfsname01: Ensure endian correctnessRalf Kirchner2013-06-033-33/+6418
|
* fsdosfsname01: Add compatibility testsRalf Kirchner2013-06-036-0/+11294
| | | | | | Test handling of file names and directory names according to Microsofts specification for the FAT file system. Tests for compatibility with a genuine MS Windows FAT file system have been added.
* fsdosfsname01: Add multibyte testsRalf Kirchner2013-06-032-1/+286
| | | | | Test handling of file names and directory names according to Microsofts specification for the FAT file system. Tests for multibyte file names and directory names have been added.
* libtests: Add new test: utf8proc01Ralf Kirchner2013-06-036-0/+317
| | | | | | | | utf8proc is a library for processing UTF-8 encoded Unicode strings. Some features are Unicode normalization, stripping of default ignorable characters, case folding and detection of grapheme cluster boundaries. For now utf8proc is intended for normalizing and folding strings for comparison purposes within the UTF-8 support of the FAT file system. This test will call interface methods of library utf8proc in order to make sure they compiled and linked ok. The library is third party, thus it should be sufficient for us to make sure we can build it correctly.
* fsdosfsname01: New testRalf Kirchner2013-06-036-0/+688
| | | | | | Test handling of file names and directory names according to Microsofts specification for the FAT file system. So far tested only for the default character set (code page 850).
* smptests/smplock01: New testSebastian Huber2013-05-316-0/+463
|
* score: Remove idle field of Per_CPU_ControlSebastian Huber2013-05-311-2/+11
| | | | | | This field is unused except for special case simulator clock drivers. In these places use an alternative. Add and use _Thread_Set_global_exit_status() and _Thread_Get_global_exit_status().
* smptests: Use priority ceiling for locked printSebastian Huber2013-05-312-2/+3
| | | | | In case the printf() blocks on a semaphore it was possible to end up in a livelock.
* smptests/smp09: Add missing newlineSebastian Huber2013-05-271-1/+1
|
* smptests/smp01: Do not assume CPU 0 runs InitSebastian Huber2013-05-271-19/+22
|
* smptests/smp01: Fix semaphore countSebastian Huber2013-05-278-3/+12
| | | | The locked print needs one semaphore.
* dosfs: Add RTEMS_DOSFS_SEMAPHORES_PER_INSTANCERalf Kirchner2013-05-241-0/+1
|
* fstests: Use "tmacros.h" instead of "pmacros.h"Ralf Kirchner2013-05-241-1/+1
|
* sptests: add test to demonstrate bug in strict order mutexGedare Bloom2013-05-206-1/+257
|
* sptests: add test for priority inversion with multiple locksGedare Bloom2013-05-206-1/+211
|
* fstests/fsstatvfs: Fix end of test messageSebastian Huber2013-05-161-1/+1
|
* dosfs: Add statvfs() supportAndrei Mozzhuhin2013-05-165-0/+141
|
* libtests/malloc04: Prevent compiler optimizationsSebastian Huber2013-05-101-1/+6
|
* score: Add CPU context validationSebastian Huber2013-05-106-0/+222
|
* psxtests/psxtime: Reduce test timeSebastian Huber2013-05-062-235/+139
|
* libtests/malloc04: Adjust for new sbrk() supportSebastian Huber2013-05-033-49/+84
|
* Clear the atomic conditional compilation.WeiY2013-05-018-32/+0
|
* libtests/exit02: New testSebastian Huber2013-04-236-0/+129
|
* libtests/exit01: New testSebastian Huber2013-04-236-0/+151
|
* Use uint32_t instead of long. Use unsigned defines (Prevent overflows on ↵Ralf Corsépius2013-04-172-6/+6
| | | | 16bit targets)
* testsuites: Fix warningsSebastian Huber2013-04-1115-40/+51
|
* libtests/flashdisk01: Disable for small memory BSPSebastian Huber2013-04-082-0/+31
|
* sptests/spstkalloc02: Disable for small memory BSPSebastian Huber2013-04-081-0/+25
|
* RTEMS: Delete ChangeLog files.Gedare Bloom2013-03-0812-12394/+0
| | | | | | | | | This commit deletes all RTEMS ChangeLog files. These files have been abandoned since converting to git version control. The historical data may be recovered by checking out any commit before this one. Most of the contents of these ChangeLog files can also be found in the git log. Two external ChangeLog files, ChangeLog.slac and ChangeLog.zlib, remain.
* libblock: Do resource allocation in one placeSebastian Huber2013-02-212-33/+0
| | | | | | | All resource allocations take place in rtems_bdbuf_init() now. After rtems_bdbuf_init() no fatal errors can happen due to configuration errors or resource limits. This makes it easier to detect configuration errors for users.
* fstests/fsrdwr: Add test caseSebastian Huber2013-02-203-1/+59
|
* fstests/fsrdwr: Fix warningSebastian Huber2013-02-201-1/+1
|
* fstests: Prevent compiler optimizationsSebastian Huber2013-02-151-1/+4
|
* Introduce AM_CONDITIONAL ATOMIC.Ralf Corsépius2013-02-147-14/+28
|
* Introduce AM_CONDITIONAL ATOMIC, cpuopt RTEMS_ATOMIC.Ralf Corsépius2013-02-141-0/+4
|
* sptests/spfatal11: Update due to API changesSebastian Huber2013-02-122-5/+22
|
* score: Add and use rtems_assert_contextSebastian Huber2013-02-122-5/+31
|
* tests: atomic support for RTEMS. SMP tests for atomic operations.WeiY2013-02-0742-0/+1991
|
* tests: atomic support for RTEMS. Uniprocessor tests for atomic ops.WeiY2013-02-0742-0/+2563
|
* score: atomic support for RTEMS automake and autoconf changesWeiY2013-02-074-1/+24
|
* fstests/fsrdwr: Free allocated memorySebastian Huber2013-01-301-0/+4
|
* fstests: Check resources used by FAT file systemSebastian Huber2013-01-301-0/+6
|
* fstests: Use global environment and clean upSebastian Huber2013-01-301-3/+14
| | | | This releases all resources acquired by the chroot().
* fstests: Initialize swapout taskSebastian Huber2013-01-301-0/+19
|
* fstests: Perform a quick formatSebastian Huber2013-01-301-1/+1
|
* fstests: Use designated initializersSebastian Huber2013-01-301-10/+10
|
* ftpfs: Fix SIZE command handlingSebastian Huber2013-01-282-4/+26
| | | | | | | It is invalid to issue a SIZE command once a data transfer is in progress. For reads we issue the SIZE command before the RETR command and get a snapshot of the file size. For writes the file size is initialized to zero and incremented for each write chunk.
* testsuites: Fix prototypesSebastian Huber2013-01-276-16/+22
|
* testsuites: Use rtems_fatal_source_description()Sebastian Huber2013-01-274-27/+6
|
* fstests: Generating .scn (Screen Shots) #4Alex Ivanov2013-01-156-0/+192
|