NetBSD/tests/fs/tmpfs
pooka 067a8b527b Use rump_sys_mount() instead of ukfs_mount(). Just a few more
steps and we can have a switch for if we want to run tests against
a rump kernel or a real kernel.
2009-04-26 15:15:38 +00:00
..
Atffile add regression test for kern/41128 2009-04-07 20:51:46 +00:00
Makefile Use rump_sys_mount() instead of ukfs_mount(). Just a few more 2009-04-26 15:15:38 +00:00
README
h_funcs.subr Adjust tests to work with the new API in ATF 0.6. 2009-01-19 07:15:46 +00:00
h_tools.c Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
t_create.sh Adjust tests to work with the new API in ATF 0.6. 2009-01-19 07:15:46 +00:00
t_devices.sh Adjust tests to work with the new API in ATF 0.6. 2009-01-19 07:15:46 +00:00
t_dots.sh Adjust tests to work with the new API in ATF 0.6. 2009-01-19 07:15:46 +00:00
t_exec.sh Adjust tests to work with the new API in ATF 0.6. 2009-01-19 07:15:46 +00:00
t_id_gen.sh Adjust tests to work with the new API in ATF 0.6. 2009-01-19 07:15:46 +00:00
t_link.sh Adjust tests to work with the new API in ATF 0.6. 2009-01-19 07:15:46 +00:00
t_mkdir.sh Adjust tests to work with the new API in ATF 0.6. 2009-01-19 07:15:46 +00:00
t_mknod.sh Adjust tests to work with the new API in ATF 0.6. 2009-01-19 07:15:46 +00:00
t_mount.sh Adjust tests to work with the new API in ATF 0.6. 2009-01-19 07:15:46 +00:00
t_pipes.sh Adjust tests to work with the new API in ATF 0.6. 2009-01-19 07:15:46 +00:00
t_read_write.sh Adjust tests to work with the new API in ATF 0.6. 2009-01-19 07:15:46 +00:00
t_readdir.sh Adjust tests to work with the new API in ATF 0.6. 2009-01-19 07:15:46 +00:00
t_remove.sh Adjust tests to work with the new API in ATF 0.6. 2009-01-19 07:15:46 +00:00
t_rename.sh Adjust tests to work with the new API in ATF 0.6. 2009-01-19 07:15:46 +00:00
t_renamerace.c Use rump_sys_mount() instead of ukfs_mount(). Just a few more 2009-04-26 15:15:38 +00:00
t_rmdir.sh Adjust tests to work with the new API in ATF 0.6. 2009-01-19 07:15:46 +00:00
t_setattr.sh Adjust tests to work with the new API in ATF 0.6. 2009-01-19 07:15:46 +00:00
t_sizes.sh Adjust tests to work with the new API in ATF 0.6. 2009-01-19 07:15:46 +00:00
t_sockets.sh Adjust tests to work with the new API in ATF 0.6. 2009-01-19 07:15:46 +00:00
t_statvfs.sh Convert TNF licenses to new 2 clause variant 2008-04-30 13:10:46 +00:00
t_symlink.sh Adjust tests to work with the new API in ATF 0.6. 2009-01-19 07:15:46 +00:00
t_times.sh Adjust tests to work with the new API in ATF 0.6. 2009-01-19 07:15:46 +00:00
t_trail_slash.sh Adjust tests to work with the new API in ATF 0.6. 2009-01-19 07:15:46 +00:00
t_truncate.sh Convert TNF licenses to new 2 clause variant 2008-04-30 13:10:46 +00:00
t_vnd.sh Adjust tests to work with the new API in ATF 0.6. 2009-01-19 07:15:46 +00:00
t_vnode_leak.sh Adjust tests to work with the new API in ATF 0.6. 2009-01-19 07:15:46 +00:00

README

The tests in this directory where written at the same time tmpfs was
developed.  This is why, if you follow the order of tests in the Atffile,
you will notice that they start checking the most basic things and end
checking the less common ones.  Furthermore, tests try not to use features
tested by further tests in the lists.

However, the above is not the most appropriate testing procedure when you
have a working file system because some separation in test programs does
not make sense afterwards.

Many of the tests here are applicable to any file system.  They should be
refactored to be reusable on any mounted file system, which could also
remove the need to do the mount/unmount steps in each and every test case.

Possibly take a look at the file system tests in FreeBSD.  They seem to be
much more complete, even though they are written in Perl and therefore not
directly usable.