summaryrefslogtreecommitdiffstats
path: root/testsuites (unfollow)
Commit message (Collapse)AuthorFilesLines
2013-03-08RTEMS: Delete ChangeLog files.Gedare Bloom12-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.
2013-02-21libblock: Do resource allocation in one placeSebastian Huber2-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.
2013-02-20fstests/fsrdwr: Add test caseSebastian Huber3-1/+59
2013-02-20fstests/fsrdwr: Fix warningSebastian Huber1-1/+1
2013-02-15fstests: Prevent compiler optimizationsSebastian Huber1-1/+4
2013-02-14Introduce AM_CONDITIONAL ATOMIC.Ralf Corsépius7-14/+28
2013-02-14Introduce AM_CONDITIONAL ATOMIC, cpuopt RTEMS_ATOMIC.Ralf Corsépius1-0/+4
2013-02-12sptests/spfatal11: Update due to API changesSebastian Huber2-5/+22
2013-02-12score: Add and use rtems_assert_contextSebastian Huber2-5/+31
2013-02-07tests: atomic support for RTEMS. SMP tests for atomic operations.WeiY42-0/+1991
2013-02-07tests: atomic support for RTEMS. Uniprocessor tests for atomic ops.WeiY42-0/+2563
2013-02-07score: atomic support for RTEMS automake and autoconf changesWeiY4-1/+24
2013-01-30fstests/fsrdwr: Free allocated memorySebastian Huber1-0/+4
2013-01-30fstests: Check resources used by FAT file systemSebastian Huber1-0/+6
2013-01-30fstests: Use global environment and clean upSebastian Huber1-3/+14
This releases all resources acquired by the chroot().
2013-01-30fstests: Initialize swapout taskSebastian Huber1-0/+19
2013-01-30fstests: Perform a quick formatSebastian Huber1-1/+1
2013-01-30fstests: Use designated initializersSebastian Huber1-10/+10
2013-01-28ftpfs: Fix SIZE command handlingSebastian Huber2-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.
2013-01-27testsuites: Fix prototypesSebastian Huber6-16/+22
2013-01-27testsuites: Use rtems_fatal_source_description()Sebastian Huber4-27/+6
2013-01-15fstests: Generating .scn (Screen Shots) #4Alex Ivanov6-0/+192
2013-01-15psxtmtests: Generating .scn (Screen Shots) #8Alex Ivanov7-0/+30
2013-01-14Create POSIX Timing Test psxtmthread02Christopher Kerl5-0/+120
Minor modifications were made to the student version to clearify methods and to clean up test output.
2013-01-14Generating .scn (Screen Shots) #7Alex Ivanov6-0/+32
2013-01-11Create POSIX Timing Test psxtmcond09Christopher Kerl9-0/+290
Modifications were made to this submission allow the same init.c file to be ran by three tests that were very similar using posix pthread_cond_timedwait and pthread_cond_wait.
2013-01-11Create POSIX Timing Test psxtmcond03Christopher Kerl5-0/+144
2013-01-11Added more condition variable timing tests.Jennifer Averett1-2/+4
2013-01-09Create POSIX Timing Test psxtmcond05Christopher Kerl5-0/+111
2013-01-09Create POSIX Timing Test psxtmcond02Christopher Kerl5-0/+113
2013-01-09GCI: Create POSIX Timing Test psxtmcond01Christopher Kerl5-0/+130
2013-01-07sapi: Add rtems_fatal_source_description()Sebastian Huber2-2/+32
2013-01-07rtems: Critical fix for eventsSebastian Huber2-23/+289
Commit 4b45c1393ce4ee3e1c2762ef3145d2bd6b5b38da marked a test in _Event_Timeout() as debug only. This test is required also in non-debug configurations since otherwise state corruption can happen. A revised test sptests/spintrcritical10 checks the relevant sequences.
2013-01-06tmoverhd.docCynthia Rempel1-0/+75
Hi, Adding test documentation...
2013-01-02IMFS: Generating .scn (Screen Shots) #2Christopher Kerl6-0/+276
2013-01-02sptests/spintrcritical16: Fix NULL pointer accessSebastian Huber1-1/+4
2012-12-22libtests/rbheap01: Add test casesSebastian Huber1-0/+42
2012-12-22sptests/speventsystem01: Add test casesSebastian Huber1-0/+34
2012-12-22libtests/malloctest: Add test caseSebastian Huber1-0/+25
2012-12-22libtests/malloctest: Add test caseSebastian Huber1-0/+24
2012-12-21libblock: Use rtems_blkdev_create_partition()Sebastian Huber1-2/+26
Use rtems_blkdev_create_partition() instead of rtems_disk_create_log() to avoid problems with the huge IMFS_GENERIC_DEVICE_MAJOR_NUMBER.
2012-12-21IMFS: Fix resource leak in IMFS_allocate_node()Sebastian Huber1-7/+58
2012-12-21libcsupport: Add rtems_resource_snapshot_take()Sebastian Huber2-5/+101
Add rtems_resource_rtems_api, rtems_resource_posix_api, rtems_resource_snapshot, rtems_resource_snapshot_equal(), and rtems_resource_snapshot_check().
2012-12-21score: Add _Objects_Active_count()Sebastian Huber3-1/+10
2012-12-21score: Add rtems_chain_node_count_unprotected()Sebastian Huber3-1/+23
2012-12-16libtests/md501: Use test cases of RFC 2202Sebastian Huber2-160/+200
2012-12-16libtests/md501: New testSebastian Huber6-0/+251
2012-12-13dosfs: Add sync_device option for msdos_format()Sebastian Huber1-1/+6
2012-12-13dosfs: Bugfix for disks of for example 100MB sizeRalf Kirchner1-11/+60
2012-12-13termios: Implement tcflush()Sebastian Huber2-13/+15
New IO control RTEMS_IO_TCFLUSH.