summaryrefslogtreecommitdiffstats
path: root/testsuites/fstests (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.
* 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).
* 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
|
* fstests/fsstatvfs: Fix end of test messageSebastian Huber2013-05-161-1/+1
|
* dosfs: Add statvfs() supportAndrei Mozzhuhin2013-05-165-0/+141
|
* testsuites: Fix warningsSebastian Huber2013-04-112-1/+4
|
* RTEMS: Delete ChangeLog files.Gedare Bloom2013-03-081-313/+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
|
* 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
|
* fstests: Generating .scn (Screen Shots) #4Alex Ivanov2013-01-156-0/+192
|
* IMFS: Generating .scn (Screen Shots) #2Christopher Kerl2013-01-026-0/+276
|
* libblock: Use rtems_blkdev_create_partition()Sebastian Huber2012-12-211-2/+26
| | | | | Use rtems_blkdev_create_partition() instead of rtems_disk_create_log() to avoid problems with the huge IMFS_GENERIC_DEVICE_MAJOR_NUMBER.
* IMFS: Fix resource leak in IMFS_allocate_node()Sebastian Huber2012-12-211-7/+58
|
* dosfs: Add sync_device option for msdos_format()Sebastian Huber2012-12-131-1/+6
|
* dosfs: Bugfix for disks of for example 100MB sizeRalf Kirchner2012-12-131-11/+60
|
* dosfs: Cluster write optimizationRalf Kirchner2012-12-056-0/+332
| | | | | | Separate cluster write from sector write for quick file write. New test fstests/fsdosfswrite01.
* dosfs: Block size optimizationRalf Kirchner2012-12-051-1/+1
| | | | | | Change block size of bdbuf to the cluster size if the data clusters are aligned on a cluster boundary. This enables fast access to data clusters.
* fstests/fsdosfsformat01: New testRalf Kirchner2012-12-056-1/+480
|
* dosfs: Delete fattype parameter for msdos_format()Ralf Kirchner2012-12-051-1/+0
| | | | | | | | Delete fattype parameter of msdos_format_request_param_t because the FAT type is determined by cluster and disk size. Estimate FAT type and re-evaluate FAT type after exact parameter determination.
* dosfs: Add skip_alignment for msdos_format()Ralf Kirchner2012-12-051-1/+1
| | | | | | | | | | Add skip_alignment parameter of msdos_format_request_param_t. Delete cluster_align parameter of msdos_format_request_param_t. By default the FAT, data cluster, and root directory for FAT12 and FAT16 is aligned on a cluster boundary to optimize performance. Format changes throughout.
* fstests/fsfseeko01: Add test casesSebastian Huber2012-11-221-4/+26
|
* fstests/fsrfsbitmap01: Fix NULL pointer accessSebastian Huber2012-11-136-90/+67
| | | | Move test files into one directory.
* Make tems_rfs_bitmap_ut_test_range, rtems_rfs_bitmap_ut_alloc_seq_test, ↵Ralf Corsépius2012-10-151-6/+6
| | | | rtems_rfs_bitmap_ut_test_bitmap, rtems_rfs_bitmap_unit_test, nullpointer_test, open_failure static.
* Use %zd instead of %d to print size_t'sRalf Corsépius2012-10-151-1/+1
|
* Use %zu instead of %lu to print size_t's.Ralf Corsépius2012-10-111-1/+1
|
* Cleanup Krzysztof's copyright notices.Ralf Corsépius2012-10-114-7/+7
|
* fstests/fsimfsgeneric01: Avoid global stateSebastian Huber2012-10-071-4/+3
|
* Filesystem: Reject removal of root nodesSebastian Huber2012-10-071-4/+1
| | | | | | | Reject the removal of file system instance root nodes in rmdir() and unlink() and return the EBUSY error status. File system instances can be removed with unmount(). Remove root node special cases in IMFS, DOSFS, and RFS.
* fsrfsbitmap01/test.c: Remove tabsJoel Sherrill2012-10-011-7/+8
|
* misc fstests: Remove spaces at EOLJoel Sherrill2012-10-016-21/+16
|
* New fstest to cover RFS bitmaps - fsrfsbitmap01Krzysztof Miesowicz2012-10-016-0/+743
|
* new fstest hitting fpathconf functionKrzysztof Miesowicz2012-10-016-0/+171
|
* Revert "Add config.h.in."Gedare Bloom2012-08-061-105/+0
| | | | This reverts commit cf42a6ea9dbb6ebee498ae8db319d3e475bcd6be.
* Require automake-1.12.2.Ralf Corsépius2012-07-191-1/+1
|
* Require autoconf-2.69.Ralf Corsépius2012-07-191-1/+1
|
* score: Change greedy allocation APISebastian Huber2012-07-171-1/+1
|
* fstests/fsfseeko01: New testSebastian Huber2012-06-196-0/+119
|
* libblock: Remove const qualifier from bdbuf APISebastian Huber2012-05-311-1/+1
| | | | This allows addtion of per disk statistics for example.
* Filesystem: Wait for unmount() to finishSebastian Huber2012-05-291-0/+4
|