fusefs: remove obsolete comments in the tests

Sponsored by:	The FreeBSD Foundation
This commit is contained in:
Alan Somers 2019-05-27 17:14:46 +00:00
parent 29edc611c1
commit 7637cc62ab
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/projects/fuse2/; revision=348308
2 changed files with 0 additions and 15 deletions

View File

@ -291,12 +291,6 @@ TEST_F(Lookup, entry_cache_timeout)
ASSERT_EQ(0, access(FULLPATH, F_OK)) << strerror(errno);
}
// TODO: export_support
// After upgrading the protocol to 7.10, check that the kernel will only
// attempt to lookup "." and ".." if the filesystem sets FUSE_EXPORT_SUPPORT in
// the init flags. If not, then all lookups for those entries will return
// ESTALE.
TEST_F(Lookup, ok)
{
const char FULLPATH[] = "mountpoint/some_file.txt";

View File

@ -28,15 +28,6 @@
* SUCH DAMAGE.
*/
/*
* TODO: remove FUSE_WRITE_CACHE definition when upgrading to protocol 7.9.
* This bit was actually part of kernel protocol version 7.2, but never
* documented until 7.9
*/
#ifndef FUSE_WRITE_CACHE
#define FUSE_WRITE_CACHE 1
#endif
/* Nanoseconds to sleep, for tests that must */
#define NAP_NS (100'000'000)