source: rtems/testsuites/fstests/Makefile.am @ 27d240e0

4.115
Last change on this file since 27d240e0 was 27d240e0, checked in by Andre Marques <andre.lousa.marques@…>, on 02/22/14 at 21:57:34

New fstest to check rename POSIX conformance

This patch is a newer version of the test presented on

http://www.rtems.org/pipermail/rtems-devel/2014-February/005318.html

Unchecked error cases:

  • EIO (physical error)
  • ENOSPC (no space left in the new filepath)
  • EROFS (already covered on testsuites/fstests/fsrofs01)

Untested functionality:

  • File system lock during rename() operation
  • If after rename() the link count of a file becomes 0 it should be

removed and the space ocupied by the file shall be freed and no longer
accessible (the function statvfs() gives "not implemented" on the imfs
file system, so this is postponed for now)

  • Property mode set to 100644
File size: 1.4 KB
Line 
1ACLOCAL_AMFLAGS = -I ../aclocal
2
3SUBDIRS =
4SUBDIRS += fsdosfsname01
5SUBDIRS += fsdosfswrite01
6SUBDIRS += fsdosfsformat01
7SUBDIRS += fsfseeko01
8SUBDIRS += fsdosfssync01
9SUBDIRS += imfs_fserror
10SUBDIRS += imfs_fslink
11SUBDIRS += imfs_fspatheval
12SUBDIRS += imfs_fspermission
13SUBDIRS += imfs_fsrdwr
14SUBDIRS += imfs_fssymlink
15SUBDIRS += imfs_fstime
16SUBDIRS += jffs2_fserror
17SUBDIRS += jffs2_fslink
18SUBDIRS += jffs2_fspatheval
19SUBDIRS += jffs2_fspermission
20SUBDIRS += jffs2_fsrdwr
21SUBDIRS += jffs2_fssymlink
22SUBDIRS += jffs2_fstime
23SUBDIRS += mdosfs_fserror
24SUBDIRS += mdosfs_fspatheval
25SUBDIRS += mdosfs_fsrdwr
26SUBDIRS += mdosfs_fsstatvfs
27SUBDIRS += mimfs_fserror
28SUBDIRS += mimfs_fslink
29SUBDIRS += mimfs_fspatheval
30SUBDIRS += mimfs_fspermission
31SUBDIRS += mimfs_fsrdwr
32SUBDIRS += mimfs_fssymlink
33SUBDIRS += mimfs_fstime
34SUBDIRS += mimfs_fsrename
35SUBDIRS += mrfs_fserror
36SUBDIRS += mrfs_fslink
37SUBDIRS += mrfs_fspatheval
38SUBDIRS += mrfs_fspermission
39SUBDIRS += mrfs_fsrdwr
40SUBDIRS += mrfs_fssymlink
41SUBDIRS += mrfs_fstime
42SUBDIRS += mrfs_fsfpathconf
43SUBDIRS += fsrfsbitmap01
44SUBDIRS += fsnofs01
45SUBDIRS += fsimfsgeneric01
46SUBDIRS += fsbdpart01
47
48EXTRA_DIST =
49EXTRA_DIST += support/ramdisk_support.c
50EXTRA_DIST += support/ramdisk_support.h
51EXTRA_DIST += support/fstest_support.c
52EXTRA_DIST += support/fstest_support.h
53EXTRA_DIST += support/fstest.h
54
55include $(top_srcdir)/../automake/subdirs.am
56include $(top_srcdir)/../automake/local.am
Note: See TracBrowser for help on using the repository browser.