Age | Commit message (Collapse) | Author | Lines | |
---|---|---|---|---|
2017-08-25 | example/ioctl: build on FreeBSD, but add protocol check instead. | Nikolaus Rath | -0/+2 | |
2017-08-25 | examples/{ioctl,null}: don't build under FreeBSD instead of skipping tests. | Nikolaus Rath | -20/+15 | |
2017-08-24 | Skip testing null and ioctl examples under FreeBSD. | Nikolaus Rath | -0/+10 | |
This seems to be unsupported. However, me may also be doing it wrong. I've asked on the freebsd-fs list for help. | ||||
2017-08-24 | Removed unused import. | Nikolaus Rath | -1/+1 | |
2017-08-24 | Use printcap() to control test execution | Nikolaus Rath | -11/+15 | |
That way, we run only tests that are supported by the running kernel. | ||||
2017-08-24 | Added testcase for examples/printcap | Nikolaus Rath | -0/+6 | |
2017-08-11 | Skip tests that aren't supported under FreeBSD. | Nikolaus Rath | -4/+11 | |
2017-08-11 | Don't build passthrough_ll under BSD. | Nikolaus Rath | -0/+3 | |
2017-08-06 | os_open(): don't attempt to close fd if open failed. | Nikolaus Rath | -1/+1 | |
2017-08-06 | Added writeback cache to passthrough_ll | Nikolaus Rath | -21/+59 | |
This fixes issue #191 (where the test was done by simply adding FUSE_CAP_WRITEBACK_CACHE without adjusting the flags in the open() call). Fixes: #191. | ||||
2017-08-04 | Added append and seek tests | Nikolaus Rath | -3/+41 | |
2017-08-03 | Don't check st_nlink value for mkdir | Nikolaus Rath | -0/+1 | |
Some filesystems don't track this for directories. Fixes: #180. | ||||
2017-06-20 | tst_readdir(): actually go through FUSE | Nikolaus Rath | -6/+9 | |
The previous code didn't actually go through the mountpoint at all. | ||||
2017-06-05 | examples/passthrough_ll: added support for create() | Nikolaus Rath | -2/+2 | |
2017-06-05 | example/passthrough_ll: added write support | Nikolaus Rath | -1/+1 | |
2017-05-31 | tst_link(): wait for RELEASE request | Nikolaus Rath | -9/+16 | |
Since RELEASE requests are asynchronous, it is possible that libfuse still considers the file to be open when userspace has closed it, so that a successive unlink() call from userspace actually triggers a rename(). We avoid the resulting test failure by re-trying a few times. Fixes: #157. | ||||
2017-05-25 | Factored out C-based tests | Nikolaus Rath | -47/+0 | |
2017-05-25 | tst_link(): add more assertions | Nikolaus Rath | -3/+17 | |
Hopefully this helps debugging issue #157. | ||||
2017-05-24 | Added tst_open_read() | Nikolaus Rath | -0/+9 | |
Slightly increases coverage of examples/passthrough_ll.c (which supports open for reading, but not for writing). | ||||
2017-04-07 | Actually test passthrough* examples | Nikolaus Rath | -1/+1 | |
Since os.path.join() interprets leading slashes, we were actually never accessing the mountpoint and doing all the tests in the source directory. Fixes: #139 | ||||
2017-04-07 | test_examples(): test without debug messages first | Nikolaus Rath | -1/+1 | |
That way, we are not drowning in messages when a test would also fail without debugging enabled. | ||||
2017-04-07 | test_examples(): avoid false positives from fuse debug output | Nikolaus Rath | -1/+7 | |
2017-04-07 | passthrough_ll: only test functions that are actually provided | Nikolaus Rath | -19/+23 | |
This appeared to work because of an unrelated bug that caused us to actually never access the mountpoint at all and do all tests on the lower filesystem. This issue will be fixed in a separate commit. | ||||
2017-04-07 | Remove checked_unlink() | Nikolaus Rath | -18/+7 | |
There is no reason why so many tests require the file system to support unlink() and/or rmdir(). | ||||
2017-04-07 | Turn tst_mknod() into tst_create() | Nikolaus Rath | -8/+15 | |
Ensure that we are really creating a new file. Don't attempt to write, we do that in tst_open_write(). | ||||
2017-04-07 | Renamed tst_write() to tst_open_write() | Nikolaus Rath | -7/+12 | |
We are actually testing both opening of an existing file and writing to it. | ||||
2017-04-07 | Added tst_unlink() | Nikolaus Rath | -0/+13 | |
To check for unlink() support without requiring create()/mknod(). | ||||
2017-04-07 | tst_mkdir(): factor out tst_rmdir() | Nikolaus Rath | -3/+14 | |
This allows testing a filesystem that offers mkdir(), but no rmdir() (and vice versa). | ||||
2017-04-07 | Rename tst_unlink() to tst_open_unlink() | Nikolaus Rath | -4/+4 | |
This makes more sense, since we are specifically checking unlinking of an open file. | ||||
2017-04-07 | tst_readdir(): don't require create/mkdir support | Nikolaus Rath | -3/+3 | |
By creating the files in the lower filesystem, we can test readdir() even for filesystems that don't implement create() or mkdir(). | ||||
2017-01-12 | Added experimental support for building with Meson+Ninja | Nikolaus Rath | -1/+1 | |
2017-01-10 | Skip tests if not root and no setuid fusermount3. | Nikolaus Rath | -1/+3 | |
2016-12-23 | Added documentation and test case for null example | Nikolaus Rath | -0/+22 | |
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 | -10/+5 | |
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 | -2/+1 | |
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 | -0/+12 | |
2016-10-09 | Added cuse unit test. | Nikolaus Rath | -0/+39 | |
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 | -36/+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 | 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-02 | Run tests under valgrind when available. | Nikolaus Rath | -15/+20 | |
Fixes #50. |