Age | Commit message (Collapse) | Author | Lines | |
---|---|---|---|---|
2016-11-28 | Rename more things from fuse to fuse3 | Przemysław Pawełczyk | -2/+2 | |
2016-11-10 | Don't expect EACCESS errors as root | Nikolaus Rath | -8/+13 | |
Fixes #111. | ||||
2016-11-06 | Don't hardcode test file name. | Nikolaus Rath | -1/+1 | |
2016-11-06 | Added test for fchmod | Nikolaus Rath | -1/+186 | |
At the moment this test fails (cf. issue #62). If that gets fixed in the kernel, this test can be activated conditionally. | ||||
2016-10-28 | Renamed fusermount / mount.fuse to fusermount3 / mount.fuse3 | Nikolaus Rath | -2/+2 | |
2016-10-24 | Fix segfault in debug logging code | Nikolaus Rath | -1/+4 | |
fi may be NULL, so we need to protect against this. | ||||
2016-10-20 | fuse_new(): don't accept options that don't make sense for end-users | Nikolaus Rath | -2/+0 | |
Several options (use_ino, etc) depend on the file system implementation. Allowing them to be set from the command line makes no sense. | ||||
2016-10-15 | Unify handling of fuse_conn_info options | Nikolaus Rath | -11/+16 | |
Instead of using command line options to modify struct fuse_conn_info before and after calling the init() handler, we now give the file system explicit control over this. | ||||
2016-10-13 | tests: use freshly-build fusermount (instead of system version) | Nikolaus Rath | -4/+22 | |
When running tests as non-root, make fusermount setuid root. | ||||
2016-10-13 | Only test writeback cache if kernel is recent enough. | Nikolaus Rath | -1/+5 | |
2016-10-10 | Fix race condition in notify_* examples | Nikolaus Rath | -13/+8 | |
The fix in commit cf4159156b was incomplete. While some false positives are caused by sleep() in the file system taking longer than expected, there was also a race condition where the file system would run before the contents are initialized properly. | ||||
2016-10-10 | Added write cache tests. | Nikolaus Rath | -2/+225 | |
2016-10-09 | Added cuse unit test. | Nikolaus Rath | -2/+42 | |
2016-10-09 | Increase timeouts in notify_* tests | Nikolaus Rath | -8/+14 | |
When running under Valgrind, we otherwise get sporadic test failures. | ||||
2016-10-09 | Renamed timefsN examples to fuse_notify_* | Nikolaus Rath | -4/+6 | |
This should make it more obvious at first glance what the different examples do. | ||||
2016-10-09 | Renamed ioctl and poll examples | Nikolaus Rath | -6/+6 | |
The new names should make it more obvious at first glance what each example demonstrates. | ||||
2016-10-09 | Renamed some examples to make their function more obvious | Nikolaus Rath | -69/+9 | |
Also, added more comments for the same purpose. | ||||
2016-10-08 | Added timefs3 to test notify_inval_entry. | Nikolaus Rath | -1/+33 | |
Fixes #32. | ||||
2016-10-08 | Added timefs[12] examples. | Nikolaus Rath | -1/+31 | |
These examplesdemonstrate the use of the `fuse_lowlevel_notify_store` and `fuse_lowlevel_notify_inval_inode` functions. | ||||
2016-10-08 | Added safe_sleep() | Nikolaus Rath | -0/+14 | |
2016-10-08 | Removed ``-o big_writes`` option | Nikolaus Rath | -1/+1 | |
This option is obsolete and should always be enabled. File systems that want to limit the size of write requests should use the ``-o max_write=<N>`` option instead. | ||||
2016-10-05 | Test more combinations of low-level options. | Nikolaus Rath | -6/+12 | |
2016-10-03 | Don't crash if valgrind or libtool are not installed. | Nikolaus Rath | -3/+7 | |
2016-10-02 | Run tests under valgrind when available. | Nikolaus Rath | -20/+43 | |
Fixes #50. | ||||
2016-10-02 | Import os.path.join as pjoin | Nikolaus Rath | -26/+27 | |
Makes the code much shorter :-). | ||||
2016-10-02 | Added test for fuse_lo-plus. | Nikolaus Rath | -0/+31 | |
2016-10-02 | Run hello_ll single-threaded explicitly. | Nikolaus Rath | -0/+3 | |
2016-05-13 | Add 'traceback' as suspicious test output pattern. | Nikolaus Rath | -1/+1 | |
2016-05-13 | Add ioctl tests. | Nikolaus Rath | -0/+24 | |
2016-03-29 | Added test_fsel | Nikolaus Rath | -0/+15 | |
2016-03-29 | Added unit tests for fusexmp and hello | Nikolaus Rath | -0/+306 | |
2016-03-29 | Added basic unit tests. | Nikolaus Rath | -1/+159 | |
Fixes issue #33. | ||||
2016-03-29 | Integrate tests with autotools | Nikolaus Rath | -8/+2 | |
2013-09-20 | test: add a realdir option | Miklos Szeredi | -13/+38 | |
2013-02-07 | libfuse: add readdirplus support in fuse_lowlevel_ops | Feng Shuo | -0/+1 | |
This patch implements readdirplus support in FUSE usersapce. It adds a new fuse lowlevel operations fuse_lowleve_ops::readdir_plus, corespoding mount options and helper functions to maintain buffer. [From: Eric Wong <normalperson@yhbt.net>] This makes our terminology consistent with NFS and our kernel module, as well as reducing user/developer confusion in the command-line. Note: I'm keeping "fuse_add_direntry_plus" since that is less standardized in its use than "readdirplus" for now. Signed-off-by: Feng Shuo <steve.shuo.feng@gmail.com> | ||||
2012-04-06 | test improvements | Miklos Szeredi | -8/+149 | |
2010-11-12 | update test/.gitignore | Miklos Szeredi | -0/+1 | |
2010-06-24 | Add .gitignore files | Miklos Szeredi | -2/+1 | |
Add .gitignore files and delete .cvsignore files. | ||||
2007-12-12 | change indenting | Miklos Szeredi | -1325/+1341 | |
2007-12-12 | Disable old symbol versions if __UCLIBC__ is defined | Miklos Szeredi | -0/+202 | |
2007-09-17 | add testcase | Miklos Szeredi | -0/+165 | |
2007-08-08 | warning fix | Miklos Szeredi | -1/+1 | |
2007-07-02 | Released 2.7.0 | Miklos Szeredi | -1/+1 | |
2007-05-21 | add test for mknod() of regular file | Miklos Szeredi | -0/+34 | |
2006-10-08 | fixes | Miklos Szeredi | -0/+51 | |
2006-09-16 | fix | Miklos Szeredi | -20/+87 | |
2005-10-03 | trailing whitespace fix | Miklos Szeredi | -8/+8 | |
2005-08-25 | fix | Miklos Szeredi | -1/+130 | |
2005-08-05 | *** empty log message *** | Miklos Szeredi | -0/+2 | |
2005-08-03 | add testcases for open() | Miklos Szeredi | -4/+185 | |