NetBSD/tests/fs/tmpfs
jmmv 0818487da7 Simplify test_mount and log errors.
If mount_tmpfs fails, show what the stderr output of the command was instead
of failing without details.

While doing this, remove the stupidity to deal with the optional arguments
to the test_mount routine.
2013-03-17 01:16:45 +00:00
..
Makefile
README
h_funcs.subr Simplify test_mount and log errors. 2013-03-17 01:16:45 +00:00
h_tools.c Turn warns on for all tests and fix all the bugs. 2011-06-11 18:03:17 +00:00
t_create.sh chown the workdir to unpriv user instead of chmod 711. Otherwise, 2011-03-05 07:41:11 +00:00
t_devices.sh
t_dots.sh
t_exec.sh
t_link.sh
t_mkdir.sh chown the workdir to unpriv user instead of chmod 711. Otherwise, 2011-03-05 07:41:11 +00:00
t_mknod.sh
t_mount.sh
t_pipes.sh
t_read_write.sh
t_readdir.sh
t_remove.sh
t_rename.sh
t_renamerace.c No more xfail for PR kern/36681. 2011-08-18 21:44:55 +00:00
t_rmdir.sh
t_setattr.sh
t_sizes.sh
t_sockets.sh
t_statvfs.sh
t_symlink.sh
t_times.sh
t_trail_slash.sh
t_truncate.sh
t_vnd.sh Workaround problem with qemu where jot 100 produce garbage otput like this 2011-04-21 22:26:46 +00:00
t_vnode_leak.sh

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.